diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-09-13 10:23:13 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-09-13 10:23:13 +0200 |
commit | 96da9f235dbef518a38940bba0e952a3074c2050 (patch) | |
tree | 48b1601cb3867b3c7e26ad025796458b4fdc041c /modules/unicode/unicode.js | |
parent | 36c31f2e1d912dd5e4d84a1d30f5197d5fc549fd (diff) |
Diffstat (limited to 'modules/unicode/unicode.js')
-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; |