Source

isIdeo.js

/*
 * isIdeo.js - Character type definitions
 *
 * Copyright © 2012-2015, 2018, JEDLSoft
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// !data ctype

var ilib = require("../index.js");
var CType = require("./CType.js");
var IString = require("./IString.js");

/**
 * Return whether or not the first character is an ideographic character.<p>
 *
 * @static
 * @param {string|IString|number} ch character or code point to examine
 * @return {boolean} true if the first character is an ideographic character.
 */
var isIdeo = function (ch) {
    var num;
    switch (typeof(ch)) {
        case 'number':
            num = ch;
            break;
        case 'string':
            num = IString.toCodePoint(ch, 0);
            break;
        case 'undefined':
            return false;
        default:
            num = ch._toCodePoint(0);
            break;
    }

    return CType._inRange(num, 'cjk', ilib.data.ctype) ||
        CType._inRange(num, 'cjkradicals', ilib.data.ctype) ||
        CType._inRange(num, 'enclosedcjk', ilib.data.ctype) ||
        CType._inRange(num, 'cjkpunct', ilib.data.ctype) ||
        CType._inRange(num, 'cjkcompatibility', ilib.data.ctype);
};

/**
 * @protected
 * @param {boolean} sync
 * @param {Object|undefined} loadParams
 * @param {function(*)|undefined} onLoad
 */
isIdeo._init = function (sync, loadParams, onLoad) {
    CType._init(sync, loadParams, onLoad);
};

module.exports = isIdeo;