char-info
Version:
Unicode character information library.
48 lines • 1.99 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnicodeCategory = void 0;
/** @module char-info/unicode */
/* tslint:disable:naming-convention */
/** Unicode category names. */
var UnicodeCategory;
(function (UnicodeCategory) {
UnicodeCategory.Letter = "L";
UnicodeCategory.LetterUppercase = "Lu";
UnicodeCategory.LetterLowercase = "Ll";
UnicodeCategory.LetterTitlecase = "Lt";
UnicodeCategory.LetterModifier = "Lm";
UnicodeCategory.LetterOther = "Lo";
UnicodeCategory.MarkNonspacing = "Mn";
UnicodeCategory.MarkSpacingCombining = "Mc";
UnicodeCategory.MarkEncloding = "Me";
UnicodeCategory.Mark = "M";
UnicodeCategory.NumberDecimalDigit = "Nd";
UnicodeCategory.NumberLetter = "Nl";
UnicodeCategory.NumberOther = "No";
UnicodeCategory.Number = "N";
UnicodeCategory.PunctuationConnector = "Pc";
UnicodeCategory.PunctuationDash = "Pd";
UnicodeCategory.PuncutationOpen = "Ps";
UnicodeCategory.PunctuationClose = "Pe";
UnicodeCategory.PunctuationInitialQuote = "Pi";
UnicodeCategory.PunctuationFinalQuote = "Pf";
UnicodeCategory.PunctuationOther = "Po";
UnicodeCategory.Punctuation = "P";
UnicodeCategory.SymbolMath = "Sm";
UnicodeCategory.SymbolCurrency = "Sc";
UnicodeCategory.SymbolModifier = "Sk";
UnicodeCategory.SymbolOther = "So";
UnicodeCategory.Symbol = "S";
UnicodeCategory.SeparatorSpace = "Zs";
UnicodeCategory.SeparatorLine = "Zl";
UnicodeCategory.SeparatorParagraph = "Zp";
UnicodeCategory.Separator = "Z";
UnicodeCategory.Custom_SeparatorVertical = "_Zv";
UnicodeCategory.OtherControl = "Cc";
UnicodeCategory.OtherFormat = "Cf";
UnicodeCategory.OtherSurrogate = "Cs";
UnicodeCategory.OtherPrivateUse = "Co";
UnicodeCategory.OtherNotAssigned = "Cn";
UnicodeCategory.Other = "C";
})(UnicodeCategory || (exports.UnicodeCategory = UnicodeCategory = {}));
//# sourceMappingURL=categories.js.map