diff options
-rw-r--r-- | modules/unicode/unicode.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/unicode/unicode.js b/modules/unicode/unicode.js index 4b313fc..84191fa 100644 --- a/modules/unicode/unicode.js +++ b/modules/unicode/unicode.js @@ -1,11 +1,15 @@ "use strict"; +// TODO +// - https://www.unicode.org/Public/UCD/latest/ucd/NameAliases.txt (https://www.unicode.org/versions/Unicode17.0.0/core-spec/chapter-4/#G2082) + const cmn = require("../$common.js"); const fs = require("fs"); const path = require("path"); const https = require("https"); +// https://www.unicode.org/reports/tr44/#UnicodeData.txt const fCODE = 0; const fNAME = 1; const fCATEGORY = 2; @@ -15,7 +19,7 @@ const fDIGIT = 7; const fNUMERIC = 8; const fMIRRORED = 9; const fOLDNAME = 10; -const fCOMMENT = 11; +// comment (always null by spec, deprecated) const fUPPERCASE = 12; const fLOWERCASE = 13; const fTITLECASE = 14; |