@ot-builder/io-bin-encoding 1.7.3 → 1.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/main/index.js +2 -3
- package/lib/stat/os2-unicode-range.js +168 -168
- package/package.json +16 -16
package/lib/main/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.readEncoding = readEncoding;
|
|
4
|
+
exports.writeEncoding = writeEncoding;
|
|
4
5
|
const bin_util_1 = require("@ot-builder/bin-util");
|
|
5
6
|
const ot_encoding_1 = require("@ot-builder/ot-encoding");
|
|
6
7
|
const read_1 = require("../cmap/read");
|
|
@@ -15,7 +16,6 @@ function readEncoding(sfnt, cfg, gOrd, md) {
|
|
|
15
16
|
result.cmap = new bin_util_1.BinaryView(bCmap).next(read_1.ReadCmap, gOrd);
|
|
16
17
|
return result;
|
|
17
18
|
}
|
|
18
|
-
exports.readEncoding = readEncoding;
|
|
19
19
|
function writeEncoding(out, cfg, encoding, gOrd, md) {
|
|
20
20
|
if (encoding.cmap) {
|
|
21
21
|
let stat = new interface_1.EmptyStat();
|
|
@@ -28,5 +28,4 @@ function writeEncoding(out, cfg, encoding, gOrd, md) {
|
|
|
28
28
|
out.add(ot_encoding_1.Cmap.Tag, bin_util_1.Frag.packFrom(write_1.WriteCmap, encoding.cmap, gOrd, cfg));
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
-
exports.writeEncoding = writeEncoding;
|
|
32
31
|
//# sourceMappingURL=index.js.map
|
|
@@ -28,174 +28,174 @@ class Os2UnicodeRangeStat extends interface_1.EmptyStat {
|
|
|
28
28
|
exports.Os2UnicodeRangeStat = Os2UnicodeRangeStat;
|
|
29
29
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
30
30
|
const UnicodeRanges = [
|
|
31
|
-
[0, 0, 0x0000, 0x007f],
|
|
32
|
-
[0, 1, 0x0080, 0x00ff],
|
|
33
|
-
[0, 2, 0x0100, 0x017f],
|
|
34
|
-
[0, 3, 0x0180, 0x024f],
|
|
35
|
-
[0, 4, 0x0250, 0x02af],
|
|
36
|
-
[0, 4, 0x1d00, 0x1d7f],
|
|
37
|
-
[0, 4, 0x1d80, 0x1dbf],
|
|
38
|
-
[0, 5, 0x02b0, 0x02ff],
|
|
39
|
-
[0, 5, 0xa700, 0xa71f],
|
|
40
|
-
[0, 6, 0x0300, 0x036f],
|
|
41
|
-
[0, 6, 0x1dc0, 0x1dff],
|
|
42
|
-
[0, 7, 0x0370, 0x03ff],
|
|
43
|
-
[0, 8, 0x2c80, 0x2cff],
|
|
44
|
-
[0, 9, 0x0400, 0x04ff],
|
|
45
|
-
[0, 9, 0x0500, 0x052f],
|
|
46
|
-
[0, 9, 0x2de0, 0x2dff],
|
|
47
|
-
[0, 9, 0xa640, 0xa69f],
|
|
48
|
-
[0, 10, 0x0530, 0x058f],
|
|
49
|
-
[0, 11, 0x0590, 0x05ff],
|
|
50
|
-
[0, 12, 0xa500, 0xa63f],
|
|
51
|
-
[0, 13, 0x0600, 0x06ff],
|
|
52
|
-
[0, 13, 0x0750, 0x077f],
|
|
53
|
-
[0, 14, 0x07c0, 0x07ff],
|
|
54
|
-
[0, 15, 0x0900, 0x097f],
|
|
55
|
-
[0, 16, 0x0980, 0x09ff],
|
|
56
|
-
[0, 17, 0x0a00, 0x0a7f],
|
|
57
|
-
[0, 18, 0x0a80, 0x0aff],
|
|
58
|
-
[0, 19, 0x0b00, 0x0b7f],
|
|
59
|
-
[0, 20, 0x0b80, 0x0bff],
|
|
60
|
-
[0, 21, 0x0c00, 0x0c7f],
|
|
61
|
-
[0, 22, 0x0c80, 0x0cff],
|
|
62
|
-
[0, 23, 0x0d00, 0x0d7f],
|
|
63
|
-
[0, 24, 0x0e00, 0x0e7f],
|
|
64
|
-
[0, 25, 0x0e80, 0x0eff],
|
|
65
|
-
[0, 26, 0x10a0, 0x10ff],
|
|
66
|
-
[0, 26, 0x2d00, 0x2d2f],
|
|
67
|
-
[0, 27, 0x1b00, 0x1b7f],
|
|
68
|
-
[0, 28, 0x1100, 0x11ff],
|
|
69
|
-
[0, 29, 0x1e00, 0x1eff],
|
|
70
|
-
[0, 29, 0x2c60, 0x2c7f],
|
|
71
|
-
[0, 29, 0xa720, 0xa7ff],
|
|
72
|
-
[0, 30, 0x1f00, 0x1fff],
|
|
73
|
-
[0, 31, 0x2000, 0x206f],
|
|
74
|
-
[0, 31, 0x2e00, 0x2e7f],
|
|
75
|
-
[1, 0, 0x2070, 0x209f],
|
|
76
|
-
[1, 1, 0x20a0, 0x20cf],
|
|
77
|
-
[1, 2, 0x20d0, 0x20ff],
|
|
78
|
-
[1, 3, 0x2100, 0x214f],
|
|
79
|
-
[1, 4, 0x2150, 0x218f],
|
|
80
|
-
[1, 5, 0x2190, 0x21ff],
|
|
81
|
-
[1, 5, 0x27f0, 0x27ff],
|
|
82
|
-
[1, 5, 0x2900, 0x297f],
|
|
83
|
-
[1, 5, 0x2b00, 0x2bff],
|
|
84
|
-
[1, 6, 0x2200, 0x22ff],
|
|
85
|
-
[1, 6, 0x2a00, 0x2aff],
|
|
86
|
-
[1, 6, 0x27c0, 0x27ef],
|
|
87
|
-
[1, 6, 0x2980, 0x29ff],
|
|
88
|
-
[1, 7, 0x2300, 0x23ff],
|
|
89
|
-
[1, 8, 0x2400, 0x243f],
|
|
90
|
-
[1, 9, 0x2440, 0x245f],
|
|
91
|
-
[1, 10, 0x2460, 0x24ff],
|
|
92
|
-
[1, 11, 0x2500, 0x257f],
|
|
93
|
-
[1, 12, 0x2580, 0x259f],
|
|
94
|
-
[1, 13, 0x25a0, 0x25ff],
|
|
95
|
-
[1, 14, 0x2600, 0x26ff],
|
|
96
|
-
[1, 15, 0x2700, 0x27bf],
|
|
97
|
-
[1, 16, 0x3000, 0x303f],
|
|
98
|
-
[1, 17, 0x3040, 0x309f],
|
|
99
|
-
[1, 18, 0x30a0, 0x30ff],
|
|
100
|
-
[1, 18, 0x31f0, 0x31ff],
|
|
101
|
-
[1, 19, 0x3100, 0x312f],
|
|
102
|
-
[1, 19, 0x31a0, 0x31bf],
|
|
103
|
-
[1, 20, 0x3130, 0x318f],
|
|
104
|
-
[1, 21, 0xa840, 0xa87f],
|
|
105
|
-
[1, 22, 0x3200, 0x32ff],
|
|
106
|
-
[1, 23, 0x3300, 0x33ff],
|
|
107
|
-
[1, 24, 0xac00, 0xd7af],
|
|
108
|
-
[1, 25, 0xd800, 0xdfff],
|
|
109
|
-
[1, 26, 0x10900, 0x1091f],
|
|
110
|
-
[1, 27, 0x4e00, 0x9fff],
|
|
111
|
-
[1, 27, 0x2e80, 0x2eff],
|
|
112
|
-
[1, 27, 0x2f00, 0x2fdf],
|
|
113
|
-
[1, 27, 0x2ff0, 0x2fff],
|
|
114
|
-
[1, 27, 0x3400, 0x4dbf],
|
|
115
|
-
[1, 27, 0x20000, 0x2a6df],
|
|
116
|
-
[1, 27, 0x3190, 0x319f],
|
|
117
|
-
[1, 28, 0xe000, 0xf8ff],
|
|
118
|
-
[1, 29, 0x31c0, 0x31ef],
|
|
119
|
-
[1, 29, 0xf900, 0xfaff],
|
|
120
|
-
[1, 29, 0x2f800, 0x2fa1f],
|
|
121
|
-
[1, 30, 0xfb00, 0xfb4f],
|
|
122
|
-
[1, 31, 0xfb50, 0xfdff],
|
|
123
|
-
[2, 0, 0xfe20, 0xfe2f],
|
|
124
|
-
[2, 1, 0xfe10, 0xfe1f],
|
|
125
|
-
[2, 1, 0xfe30, 0xfe4f],
|
|
126
|
-
[2, 2, 0xfe50, 0xfe6f],
|
|
127
|
-
[2, 3, 0xfe70, 0xfeff],
|
|
128
|
-
[2, 4, 0xff00, 0xffef],
|
|
129
|
-
[2, 5, 0xfff0, 0xffff],
|
|
130
|
-
[2, 6, 0x0f00, 0x0fff],
|
|
131
|
-
[2, 7, 0x0700, 0x074f],
|
|
132
|
-
[2, 8, 0x0780, 0x07bf],
|
|
133
|
-
[2, 9, 0x0d80, 0x0dff],
|
|
134
|
-
[2, 10, 0x1000, 0x109f],
|
|
135
|
-
[2, 11, 0x1200, 0x137f],
|
|
136
|
-
[2, 11, 0x1380, 0x139f],
|
|
137
|
-
[2, 11, 0x2d80, 0x2ddf],
|
|
138
|
-
[2, 12, 0x13a0, 0x13ff],
|
|
139
|
-
[2, 13, 0x1400, 0x167f],
|
|
140
|
-
[2, 14, 0x1680, 0x169f],
|
|
141
|
-
[2, 15, 0x16a0, 0x16ff],
|
|
142
|
-
[2, 16, 0x1780, 0x17ff],
|
|
143
|
-
[2, 16, 0x19e0, 0x19ff],
|
|
144
|
-
[2, 17, 0x1800, 0x18af],
|
|
145
|
-
[2, 18, 0x2800, 0x28ff],
|
|
146
|
-
[2, 19, 0xa000, 0xa48f],
|
|
147
|
-
[2, 19, 0xa490, 0xa4cf],
|
|
148
|
-
[2, 20, 0x1700, 0x171f],
|
|
149
|
-
[2, 20, 0x1720, 0x173f],
|
|
150
|
-
[2, 20, 0x1740, 0x175f],
|
|
151
|
-
[2, 20, 0x1760, 0x177f],
|
|
152
|
-
[2, 21, 0x10300, 0x1032f],
|
|
153
|
-
[2, 22, 0x10330, 0x1034f],
|
|
154
|
-
[2, 23, 0x10400, 0x1044f],
|
|
155
|
-
[2, 24, 0x1d000, 0x1d0ff],
|
|
156
|
-
[2, 24, 0x1d100, 0x1d1ff],
|
|
157
|
-
[2, 24, 0x1d200, 0x1d24f],
|
|
158
|
-
[2, 25, 0x1d400, 0x1d7ff],
|
|
159
|
-
[2, 26, 0xf0000, 0xffffd],
|
|
160
|
-
[2, 26, 0x100000, 0x10fffd],
|
|
161
|
-
[2, 27, 0xfe00, 0xfe0f],
|
|
162
|
-
[2, 27, 0xe0100, 0xe01ef],
|
|
163
|
-
[2, 28, 0xe0000, 0xe007f],
|
|
164
|
-
[2, 29, 0x1900, 0x194f],
|
|
165
|
-
[2, 30, 0x1950, 0x197f],
|
|
166
|
-
[2, 31, 0x1980, 0x19df],
|
|
167
|
-
[3, 0, 0x1a00, 0x1a1f],
|
|
168
|
-
[3, 1, 0x2c00, 0x2c5f],
|
|
169
|
-
[3, 2, 0x2d30, 0x2d7f],
|
|
170
|
-
[3, 3, 0x4dc0, 0x4dff],
|
|
171
|
-
[3, 4, 0xa800, 0xa82f],
|
|
172
|
-
[3, 5, 0x10000, 0x1007f],
|
|
173
|
-
[3, 5, 0x10080, 0x100ff],
|
|
174
|
-
[3, 5, 0x10100, 0x1013f],
|
|
175
|
-
[3, 6, 0x10140, 0x1018f],
|
|
176
|
-
[3, 7, 0x10380, 0x1039f],
|
|
177
|
-
[3, 8, 0x103a0, 0x103df],
|
|
178
|
-
[3, 9, 0x10450, 0x1047f],
|
|
179
|
-
[3, 10, 0x10480, 0x104af],
|
|
180
|
-
[3, 11, 0x10800, 0x1083f],
|
|
181
|
-
[3, 12, 0x10a00, 0x10a5f],
|
|
182
|
-
[3, 13, 0x1d300, 0x1d35f],
|
|
183
|
-
[3, 14, 0x12000, 0x123ff],
|
|
184
|
-
[3, 14, 0x12400, 0x1247f],
|
|
185
|
-
[3, 15, 0x1d360, 0x1d37f],
|
|
186
|
-
[3, 16, 0x1b80, 0x1bbf],
|
|
187
|
-
[3, 17, 0x1c00, 0x1c4f],
|
|
188
|
-
[3, 18, 0x1c50, 0x1c7f],
|
|
189
|
-
[3, 19, 0xa880, 0xa8df],
|
|
190
|
-
[3, 20, 0xa900, 0xa92f],
|
|
191
|
-
[3, 21, 0xa930, 0xa95f],
|
|
192
|
-
[3, 22, 0xaa00, 0xaa5f],
|
|
193
|
-
[3, 23, 0x10190, 0x101cf],
|
|
194
|
-
[3, 24, 0x101d0, 0x101ff],
|
|
195
|
-
[3, 25, 0x102a0, 0x102df],
|
|
196
|
-
[3, 25, 0x10280, 0x1029f],
|
|
197
|
-
[3, 25, 0x10920, 0x1093f],
|
|
198
|
-
[3, 26, 0x1f030, 0x1f09f],
|
|
31
|
+
[0, 0, 0x0000, 0x007f], // Basic Latin
|
|
32
|
+
[0, 1, 0x0080, 0x00ff], // Latin-1 Supplement
|
|
33
|
+
[0, 2, 0x0100, 0x017f], // Latin Extended-A
|
|
34
|
+
[0, 3, 0x0180, 0x024f], // Latin Extended-B
|
|
35
|
+
[0, 4, 0x0250, 0x02af], // IPA Extensions
|
|
36
|
+
[0, 4, 0x1d00, 0x1d7f], // Phonetic Extensions
|
|
37
|
+
[0, 4, 0x1d80, 0x1dbf], // Phonetic Extensions Supplement
|
|
38
|
+
[0, 5, 0x02b0, 0x02ff], // Spacing Modifier Letters
|
|
39
|
+
[0, 5, 0xa700, 0xa71f], // Modifier Tone Letters
|
|
40
|
+
[0, 6, 0x0300, 0x036f], // Combining Diacritical Marks
|
|
41
|
+
[0, 6, 0x1dc0, 0x1dff], // Combining Diacritical Marks Supplement
|
|
42
|
+
[0, 7, 0x0370, 0x03ff], // Greek and Coptic
|
|
43
|
+
[0, 8, 0x2c80, 0x2cff], // Coptic
|
|
44
|
+
[0, 9, 0x0400, 0x04ff], // Cyrillic
|
|
45
|
+
[0, 9, 0x0500, 0x052f], // Cyrillic Supplement
|
|
46
|
+
[0, 9, 0x2de0, 0x2dff], // Cyrillic Extended-A
|
|
47
|
+
[0, 9, 0xa640, 0xa69f], // Cyrillic Extended-B
|
|
48
|
+
[0, 10, 0x0530, 0x058f], // Armenian
|
|
49
|
+
[0, 11, 0x0590, 0x05ff], // Hebrew
|
|
50
|
+
[0, 12, 0xa500, 0xa63f], // Vai
|
|
51
|
+
[0, 13, 0x0600, 0x06ff], // Arabic
|
|
52
|
+
[0, 13, 0x0750, 0x077f], // Arabic Supplement
|
|
53
|
+
[0, 14, 0x07c0, 0x07ff], // NKo
|
|
54
|
+
[0, 15, 0x0900, 0x097f], // Devanagari
|
|
55
|
+
[0, 16, 0x0980, 0x09ff], // Bengali
|
|
56
|
+
[0, 17, 0x0a00, 0x0a7f], // Gurmukhi
|
|
57
|
+
[0, 18, 0x0a80, 0x0aff], // Gujarati
|
|
58
|
+
[0, 19, 0x0b00, 0x0b7f], // Oriya
|
|
59
|
+
[0, 20, 0x0b80, 0x0bff], // Tamil
|
|
60
|
+
[0, 21, 0x0c00, 0x0c7f], // Telugu
|
|
61
|
+
[0, 22, 0x0c80, 0x0cff], // Kannada
|
|
62
|
+
[0, 23, 0x0d00, 0x0d7f], // Malayalam
|
|
63
|
+
[0, 24, 0x0e00, 0x0e7f], // Thai
|
|
64
|
+
[0, 25, 0x0e80, 0x0eff], // Lao
|
|
65
|
+
[0, 26, 0x10a0, 0x10ff], // Georgian
|
|
66
|
+
[0, 26, 0x2d00, 0x2d2f], // Georgian Supplement
|
|
67
|
+
[0, 27, 0x1b00, 0x1b7f], // Balinese
|
|
68
|
+
[0, 28, 0x1100, 0x11ff], // Hangul Jamo
|
|
69
|
+
[0, 29, 0x1e00, 0x1eff], // Latin Extended Additional
|
|
70
|
+
[0, 29, 0x2c60, 0x2c7f], // Latin Extended-C
|
|
71
|
+
[0, 29, 0xa720, 0xa7ff], // Latin Extended-D
|
|
72
|
+
[0, 30, 0x1f00, 0x1fff], // Greek Extended
|
|
73
|
+
[0, 31, 0x2000, 0x206f], // General Punctuation
|
|
74
|
+
[0, 31, 0x2e00, 0x2e7f], // Supplemental Punctuation
|
|
75
|
+
[1, 0, 0x2070, 0x209f], // Superscripts And Subscripts
|
|
76
|
+
[1, 1, 0x20a0, 0x20cf], // Currency Symbols
|
|
77
|
+
[1, 2, 0x20d0, 0x20ff], // Combining Diacritical Marks For Symbols
|
|
78
|
+
[1, 3, 0x2100, 0x214f], // Letterlike Symbols
|
|
79
|
+
[1, 4, 0x2150, 0x218f], // Number Forms
|
|
80
|
+
[1, 5, 0x2190, 0x21ff], // Arrows
|
|
81
|
+
[1, 5, 0x27f0, 0x27ff], // Supplemental Arrows-A
|
|
82
|
+
[1, 5, 0x2900, 0x297f], // Supplemental Arrows-B
|
|
83
|
+
[1, 5, 0x2b00, 0x2bff], // Miscellaneous Symbols and Arrows
|
|
84
|
+
[1, 6, 0x2200, 0x22ff], // Mathematical Operators
|
|
85
|
+
[1, 6, 0x2a00, 0x2aff], // Supplemental Mathematical Operators
|
|
86
|
+
[1, 6, 0x27c0, 0x27ef], // Miscellaneous Mathematical Symbols-A
|
|
87
|
+
[1, 6, 0x2980, 0x29ff], // Miscellaneous Mathematical Symbols-B
|
|
88
|
+
[1, 7, 0x2300, 0x23ff], // Miscellaneous Technical
|
|
89
|
+
[1, 8, 0x2400, 0x243f], // Control Pictures
|
|
90
|
+
[1, 9, 0x2440, 0x245f], // Optical Character Recognition
|
|
91
|
+
[1, 10, 0x2460, 0x24ff], // Enclosed Alphanumerics
|
|
92
|
+
[1, 11, 0x2500, 0x257f], // Box Drawing
|
|
93
|
+
[1, 12, 0x2580, 0x259f], // Block Elements
|
|
94
|
+
[1, 13, 0x25a0, 0x25ff], // Geometric Shapes
|
|
95
|
+
[1, 14, 0x2600, 0x26ff], // Miscellaneous Symbols
|
|
96
|
+
[1, 15, 0x2700, 0x27bf], // Dingbats
|
|
97
|
+
[1, 16, 0x3000, 0x303f], // CJK Symbols And Punctuation
|
|
98
|
+
[1, 17, 0x3040, 0x309f], // Hiragana
|
|
99
|
+
[1, 18, 0x30a0, 0x30ff], // Katakana
|
|
100
|
+
[1, 18, 0x31f0, 0x31ff], // Katakana Phonetic Extensions
|
|
101
|
+
[1, 19, 0x3100, 0x312f], // Bopomofo
|
|
102
|
+
[1, 19, 0x31a0, 0x31bf], // Bopomofo Extended
|
|
103
|
+
[1, 20, 0x3130, 0x318f], // Hangul Compatibility Jamo
|
|
104
|
+
[1, 21, 0xa840, 0xa87f], // Phags-pa
|
|
105
|
+
[1, 22, 0x3200, 0x32ff], // Enclosed CJK Letters And Months
|
|
106
|
+
[1, 23, 0x3300, 0x33ff], // CJK Compatibility
|
|
107
|
+
[1, 24, 0xac00, 0xd7af], // Hangul Syllables
|
|
108
|
+
[1, 25, 0xd800, 0xdfff], // Non-Plane 0 *
|
|
109
|
+
[1, 26, 0x10900, 0x1091f], // Phoenician
|
|
110
|
+
[1, 27, 0x4e00, 0x9fff], // CJK Unified Ideographs
|
|
111
|
+
[1, 27, 0x2e80, 0x2eff], // CJK Radicals Supplement
|
|
112
|
+
[1, 27, 0x2f00, 0x2fdf], // Kangxi Radicals
|
|
113
|
+
[1, 27, 0x2ff0, 0x2fff], // Ideographic Description Characters
|
|
114
|
+
[1, 27, 0x3400, 0x4dbf], // CJK Unified Ideographs Extension A
|
|
115
|
+
[1, 27, 0x20000, 0x2a6df], // CJK Unified Ideographs Extension B
|
|
116
|
+
[1, 27, 0x3190, 0x319f], // Kanbun
|
|
117
|
+
[1, 28, 0xe000, 0xf8ff], // Private Use Area [plane 0]
|
|
118
|
+
[1, 29, 0x31c0, 0x31ef], // CJK Strokes
|
|
119
|
+
[1, 29, 0xf900, 0xfaff], // CJK Compatibility Ideographs
|
|
120
|
+
[1, 29, 0x2f800, 0x2fa1f], // CJK Compatibility Ideographs Supplement
|
|
121
|
+
[1, 30, 0xfb00, 0xfb4f], // Alphabetic Presentation Forms
|
|
122
|
+
[1, 31, 0xfb50, 0xfdff], // Arabic Presentation Forms-A
|
|
123
|
+
[2, 0, 0xfe20, 0xfe2f], // Combining Half Marks
|
|
124
|
+
[2, 1, 0xfe10, 0xfe1f], // Vertical Forms
|
|
125
|
+
[2, 1, 0xfe30, 0xfe4f], // CJK Compatibility Forms
|
|
126
|
+
[2, 2, 0xfe50, 0xfe6f], // Small Form Variants
|
|
127
|
+
[2, 3, 0xfe70, 0xfeff], // Arabic Presentation Forms-B
|
|
128
|
+
[2, 4, 0xff00, 0xffef], // Halfwidth And Fullwidth Forms
|
|
129
|
+
[2, 5, 0xfff0, 0xffff], // Specials
|
|
130
|
+
[2, 6, 0x0f00, 0x0fff], // Tibetan
|
|
131
|
+
[2, 7, 0x0700, 0x074f], // Syriac
|
|
132
|
+
[2, 8, 0x0780, 0x07bf], // Thaana
|
|
133
|
+
[2, 9, 0x0d80, 0x0dff], // Sinhala
|
|
134
|
+
[2, 10, 0x1000, 0x109f], // Myanmar
|
|
135
|
+
[2, 11, 0x1200, 0x137f], // Ethiopic
|
|
136
|
+
[2, 11, 0x1380, 0x139f], // Ethiopic Supplement
|
|
137
|
+
[2, 11, 0x2d80, 0x2ddf], // Ethiopic Extended
|
|
138
|
+
[2, 12, 0x13a0, 0x13ff], // Cherokee
|
|
139
|
+
[2, 13, 0x1400, 0x167f], // Unified Canadian Aboriginal Syllabics
|
|
140
|
+
[2, 14, 0x1680, 0x169f], // Ogham
|
|
141
|
+
[2, 15, 0x16a0, 0x16ff], // Runic
|
|
142
|
+
[2, 16, 0x1780, 0x17ff], // Khmer
|
|
143
|
+
[2, 16, 0x19e0, 0x19ff], // Khmer Symbols
|
|
144
|
+
[2, 17, 0x1800, 0x18af], // Mongolian
|
|
145
|
+
[2, 18, 0x2800, 0x28ff], // Braille Patterns
|
|
146
|
+
[2, 19, 0xa000, 0xa48f], // Yi Syllables
|
|
147
|
+
[2, 19, 0xa490, 0xa4cf], // Yi Radicals
|
|
148
|
+
[2, 20, 0x1700, 0x171f], // Tagalog
|
|
149
|
+
[2, 20, 0x1720, 0x173f], // Hanunoo
|
|
150
|
+
[2, 20, 0x1740, 0x175f], // Buhid
|
|
151
|
+
[2, 20, 0x1760, 0x177f], // Tagbanwa
|
|
152
|
+
[2, 21, 0x10300, 0x1032f], // Old Italic
|
|
153
|
+
[2, 22, 0x10330, 0x1034f], // Gothic
|
|
154
|
+
[2, 23, 0x10400, 0x1044f], // Deseret
|
|
155
|
+
[2, 24, 0x1d000, 0x1d0ff], // Byzantine Musical Symbols
|
|
156
|
+
[2, 24, 0x1d100, 0x1d1ff], // Musical Symbols
|
|
157
|
+
[2, 24, 0x1d200, 0x1d24f], // Ancient Greek Musical Notation
|
|
158
|
+
[2, 25, 0x1d400, 0x1d7ff], // Mathematical Alphanumeric Symbols
|
|
159
|
+
[2, 26, 0xf0000, 0xffffd], // Private Use [plane 15]
|
|
160
|
+
[2, 26, 0x100000, 0x10fffd], // Private Use [plane 16]
|
|
161
|
+
[2, 27, 0xfe00, 0xfe0f], // Variation Selectors
|
|
162
|
+
[2, 27, 0xe0100, 0xe01ef], // Variation Selectors Supplement
|
|
163
|
+
[2, 28, 0xe0000, 0xe007f], // Tags
|
|
164
|
+
[2, 29, 0x1900, 0x194f], // Limbu
|
|
165
|
+
[2, 30, 0x1950, 0x197f], // Tai Le
|
|
166
|
+
[2, 31, 0x1980, 0x19df], // New Tai Lue
|
|
167
|
+
[3, 0, 0x1a00, 0x1a1f], // Buginese
|
|
168
|
+
[3, 1, 0x2c00, 0x2c5f], // Glagolitic
|
|
169
|
+
[3, 2, 0x2d30, 0x2d7f], // Tifinagh
|
|
170
|
+
[3, 3, 0x4dc0, 0x4dff], // Yijing Hexagram Symbols
|
|
171
|
+
[3, 4, 0xa800, 0xa82f], // Syloti Nagri
|
|
172
|
+
[3, 5, 0x10000, 0x1007f], // Linear B Syllabary
|
|
173
|
+
[3, 5, 0x10080, 0x100ff], // Linear B Ideograms
|
|
174
|
+
[3, 5, 0x10100, 0x1013f], // Aegean Numbers
|
|
175
|
+
[3, 6, 0x10140, 0x1018f], // Ancient Greek Numbers
|
|
176
|
+
[3, 7, 0x10380, 0x1039f], // Ugaritic
|
|
177
|
+
[3, 8, 0x103a0, 0x103df], // Old Persian
|
|
178
|
+
[3, 9, 0x10450, 0x1047f], // Shavian
|
|
179
|
+
[3, 10, 0x10480, 0x104af], // Osmanya
|
|
180
|
+
[3, 11, 0x10800, 0x1083f], // Cypriot Syllabary
|
|
181
|
+
[3, 12, 0x10a00, 0x10a5f], // Kharoshthi
|
|
182
|
+
[3, 13, 0x1d300, 0x1d35f], // Tai Xuan Jing Symbols
|
|
183
|
+
[3, 14, 0x12000, 0x123ff], // Cuneiform
|
|
184
|
+
[3, 14, 0x12400, 0x1247f], // Cuneiform Numbers and Punctuation
|
|
185
|
+
[3, 15, 0x1d360, 0x1d37f], // Counting Rod Numerals
|
|
186
|
+
[3, 16, 0x1b80, 0x1bbf], // Sundanese
|
|
187
|
+
[3, 17, 0x1c00, 0x1c4f], // Lepcha
|
|
188
|
+
[3, 18, 0x1c50, 0x1c7f], // Ol Chiki
|
|
189
|
+
[3, 19, 0xa880, 0xa8df], // Saurashtra
|
|
190
|
+
[3, 20, 0xa900, 0xa92f], // Kayah Li
|
|
191
|
+
[3, 21, 0xa930, 0xa95f], // Rejang
|
|
192
|
+
[3, 22, 0xaa00, 0xaa5f], // Cham
|
|
193
|
+
[3, 23, 0x10190, 0x101cf], // Ancient Symbols
|
|
194
|
+
[3, 24, 0x101d0, 0x101ff], // Phaistos Disc
|
|
195
|
+
[3, 25, 0x102a0, 0x102df], // Carian
|
|
196
|
+
[3, 25, 0x10280, 0x1029f], // Lycian
|
|
197
|
+
[3, 25, 0x10920, 0x1093f], // Lydian
|
|
198
|
+
[3, 26, 0x1f030, 0x1f09f], // Domino Tiles
|
|
199
199
|
[3, 26, 0x1f000, 0x1f02f] // Mahjong Tiles
|
|
200
200
|
];
|
|
201
201
|
let FastMasks = null;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ot-builder/io-bin-encoding",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.5",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,22 +24,22 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@ot-builder/bin-util": "1.7.
|
|
28
|
-
"@ot-builder/errors": "1.7.
|
|
29
|
-
"@ot-builder/ot-encoding": "1.7.
|
|
30
|
-
"@ot-builder/ot-glyphs": "1.7.
|
|
31
|
-
"@ot-builder/ot-metadata": "1.7.
|
|
32
|
-
"@ot-builder/prelude": "1.7.
|
|
33
|
-
"@ot-builder/primitive": "1.7.
|
|
34
|
-
"@ot-builder/ot-sfnt": "1.7.
|
|
35
|
-
"@ot-builder/io-bin-sfnt": "1.7.
|
|
36
|
-
"tslib": "^2.
|
|
27
|
+
"@ot-builder/bin-util": "1.7.5",
|
|
28
|
+
"@ot-builder/errors": "1.7.5",
|
|
29
|
+
"@ot-builder/ot-encoding": "1.7.5",
|
|
30
|
+
"@ot-builder/ot-glyphs": "1.7.5",
|
|
31
|
+
"@ot-builder/ot-metadata": "1.7.5",
|
|
32
|
+
"@ot-builder/prelude": "1.7.5",
|
|
33
|
+
"@ot-builder/primitive": "1.7.5",
|
|
34
|
+
"@ot-builder/ot-sfnt": "1.7.5",
|
|
35
|
+
"@ot-builder/io-bin-sfnt": "1.7.5",
|
|
36
|
+
"tslib": "^2.8.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@ot-builder/io-bin-glyph-store": "1.7.
|
|
40
|
-
"@ot-builder/io-bin-metadata": "1.7.
|
|
41
|
-
"@ot-builder/test-util": "1.7.
|
|
42
|
-
"@types/jest": "^29.5.
|
|
43
|
-
"jest": "^29.
|
|
39
|
+
"@ot-builder/io-bin-glyph-store": "1.7.5",
|
|
40
|
+
"@ot-builder/io-bin-metadata": "1.7.5",
|
|
41
|
+
"@ot-builder/test-util": "1.7.5",
|
|
42
|
+
"@types/jest": "^29.5.14",
|
|
43
|
+
"jest": "^29.7.0"
|
|
44
44
|
}
|
|
45
45
|
}
|