char-info
Version:
Unicode character information library.
40 lines • 4.97 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.uniIsUpper = exports.uniIsSpace = exports.uniIsNewline = exports.uniIsLower = exports.uniIsLetter = exports.uniIsDecimal = exports.uniInScript = exports.uniInCategory = exports.uniInBlock = exports.uniGetScripts = exports.uniGetCategories = exports.uniGetBlock = exports.UnicodeScript = exports.UnicodeCategory = exports.UnicodeBlock = exports.isWordCharCode = exports.isWordChar = exports.isUpperCode = exports.isUpper = exports.isSpaceCode = exports.isSpace = exports.isNewlineCode = exports.isNewline = exports.isLowerCode = exports.isLower = exports.isLetterCode = exports.isLetter = exports.isHexCode = exports.isHex = exports.isDigitCode = exports.isDigit = exports.isAsciiCode = exports.isAscii = exports.AsciiCodes = void 0;
var ascii_1 = require("./ascii");
Object.defineProperty(exports, "AsciiCodes", { enumerable: true, get: function () { return ascii_1.AsciiCodes; } });
Object.defineProperty(exports, "isAscii", { enumerable: true, get: function () { return ascii_1.isAscii; } });
Object.defineProperty(exports, "isAsciiCode", { enumerable: true, get: function () { return ascii_1.isAsciiCode; } });
Object.defineProperty(exports, "isDigit", { enumerable: true, get: function () { return ascii_1.isDigit; } });
Object.defineProperty(exports, "isDigitCode", { enumerable: true, get: function () { return ascii_1.isDigitCode; } });
Object.defineProperty(exports, "isHex", { enumerable: true, get: function () { return ascii_1.isHex; } });
Object.defineProperty(exports, "isHexCode", { enumerable: true, get: function () { return ascii_1.isHexCode; } });
Object.defineProperty(exports, "isLetter", { enumerable: true, get: function () { return ascii_1.isLetter; } });
Object.defineProperty(exports, "isLetterCode", { enumerable: true, get: function () { return ascii_1.isLetterCode; } });
Object.defineProperty(exports, "isLower", { enumerable: true, get: function () { return ascii_1.isLower; } });
Object.defineProperty(exports, "isLowerCode", { enumerable: true, get: function () { return ascii_1.isLowerCode; } });
Object.defineProperty(exports, "isNewline", { enumerable: true, get: function () { return ascii_1.isNewline; } });
Object.defineProperty(exports, "isNewlineCode", { enumerable: true, get: function () { return ascii_1.isNewlineCode; } });
Object.defineProperty(exports, "isSpace", { enumerable: true, get: function () { return ascii_1.isSpace; } });
Object.defineProperty(exports, "isSpaceCode", { enumerable: true, get: function () { return ascii_1.isSpaceCode; } });
Object.defineProperty(exports, "isUpper", { enumerable: true, get: function () { return ascii_1.isUpper; } });
Object.defineProperty(exports, "isUpperCode", { enumerable: true, get: function () { return ascii_1.isUpperCode; } });
Object.defineProperty(exports, "isWordChar", { enumerable: true, get: function () { return ascii_1.isWordChar; } });
Object.defineProperty(exports, "isWordCharCode", { enumerable: true, get: function () { return ascii_1.isWordCharCode; } });
var unicode_1 = require("./unicode");
Object.defineProperty(exports, "UnicodeBlock", { enumerable: true, get: function () { return unicode_1.UnicodeBlock; } });
Object.defineProperty(exports, "UnicodeCategory", { enumerable: true, get: function () { return unicode_1.UnicodeCategory; } });
Object.defineProperty(exports, "UnicodeScript", { enumerable: true, get: function () { return unicode_1.UnicodeScript; } });
Object.defineProperty(exports, "uniGetBlock", { enumerable: true, get: function () { return unicode_1.uniGetBlock; } });
Object.defineProperty(exports, "uniGetCategories", { enumerable: true, get: function () { return unicode_1.uniGetCategories; } });
Object.defineProperty(exports, "uniGetScripts", { enumerable: true, get: function () { return unicode_1.uniGetScripts; } });
Object.defineProperty(exports, "uniInBlock", { enumerable: true, get: function () { return unicode_1.uniInBlock; } });
Object.defineProperty(exports, "uniInCategory", { enumerable: true, get: function () { return unicode_1.uniInCategory; } });
Object.defineProperty(exports, "uniInScript", { enumerable: true, get: function () { return unicode_1.uniInScript; } });
Object.defineProperty(exports, "uniIsDecimal", { enumerable: true, get: function () { return unicode_1.uniIsDecimal; } });
Object.defineProperty(exports, "uniIsLetter", { enumerable: true, get: function () { return unicode_1.uniIsLetter; } });
Object.defineProperty(exports, "uniIsLower", { enumerable: true, get: function () { return unicode_1.uniIsLower; } });
Object.defineProperty(exports, "uniIsNewline", { enumerable: true, get: function () { return unicode_1.uniIsNewline; } });
Object.defineProperty(exports, "uniIsSpace", { enumerable: true, get: function () { return unicode_1.uniIsSpace; } });
Object.defineProperty(exports, "uniIsUpper", { enumerable: true, get: function () { return unicode_1.uniIsUpper; } });
//# sourceMappingURL=index.js.map