logisheets-core 1.1.0

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.
Files changed (63) hide show
  1. package/dist/craft-interactions/index.d.ts +140 -0
  2. package/dist/craft-interactions/index.js +462 -0
  3. package/dist/field/index.d.ts +51 -0
  4. package/dist/field/index.js +70 -0
  5. package/dist/format/index.d.ts +21 -0
  6. package/dist/format/index.js +454 -0
  7. package/dist/index.d.ts +12 -0
  8. package/dist/index.js +17 -0
  9. package/dist/ops/index.d.ts +155 -0
  10. package/dist/ops/index.js +335 -0
  11. package/dist/permissions/index.d.ts +32 -0
  12. package/dist/permissions/index.js +74 -0
  13. package/dist/port.d.ts +9 -0
  14. package/dist/port.js +14 -0
  15. package/dist/selection/index.d.ts +1 -0
  16. package/dist/selection/index.js +1 -0
  17. package/dist/selection/model.d.ts +10 -0
  18. package/dist/selection/model.js +38 -0
  19. package/dist/strings/case.d.ts +2 -0
  20. package/dist/strings/case.js +6 -0
  21. package/dist/strings/char-code.d.ts +422 -0
  22. package/dist/strings/char-code.js +424 -0
  23. package/dist/strings/common_length.d.ts +4 -0
  24. package/dist/strings/common_length.js +28 -0
  25. package/dist/strings/contain.d.ts +4 -0
  26. package/dist/strings/contain.js +60 -0
  27. package/dist/strings/index.d.ts +5 -0
  28. package/dist/strings/index.js +5 -0
  29. package/dist/strings/judges.d.ts +3 -0
  30. package/dist/strings/judges.js +38 -0
  31. package/dist/strings/surrogate.d.ts +16 -0
  32. package/dist/strings/surrogate.js +30 -0
  33. package/dist/structured/index.d.ts +41 -0
  34. package/dist/structured/index.js +50 -0
  35. package/dist/transaction/index.d.ts +8 -0
  36. package/dist/transaction/index.js +11 -0
  37. package/dist/type-guard/index.d.ts +3 -0
  38. package/dist/type-guard/index.js +3 -0
  39. package/dist/type-guard/propterty.d.ts +1 -0
  40. package/dist/type-guard/propterty.js +3 -0
  41. package/dist/type-guard/string.d.ts +1 -0
  42. package/dist/type-guard/string.js +3 -0
  43. package/dist/type-guard/u8.d.ts +1 -0
  44. package/dist/type-guard/u8.js +3 -0
  45. package/dist/utils/a1notation.d.ts +18 -0
  46. package/dist/utils/a1notation.js +76 -0
  47. package/dist/utils/array.d.ts +2 -0
  48. package/dist/utils/array.js +12 -0
  49. package/dist/utils/clone.d.ts +2 -0
  50. package/dist/utils/clone.js +25 -0
  51. package/dist/utils/const.d.ts +7 -0
  52. package/dist/utils/const.js +8 -0
  53. package/dist/utils/equal.d.ts +1 -0
  54. package/dist/utils/equal.js +11 -0
  55. package/dist/utils/index.d.ts +6 -0
  56. package/dist/utils/index.js +6 -0
  57. package/dist/utils/uuid.d.ts +1 -0
  58. package/dist/utils/uuid.js +4 -0
  59. package/dist/validation/index.d.ts +34 -0
  60. package/dist/validation/index.js +60 -0
  61. package/dist/value/index.d.ts +9 -0
  62. package/dist/value/index.js +49 -0
  63. package/package.json +54 -0
@@ -0,0 +1,2 @@
1
+ export declare function upperCase(value: string): string;
2
+ export declare function lowerCase(value: string): string;
@@ -0,0 +1,6 @@
1
+ export function upperCase(value) {
2
+ return value.toLocaleUpperCase();
3
+ }
4
+ export function lowerCase(value) {
5
+ return value.toLocaleLowerCase();
6
+ }
@@ -0,0 +1,422 @@
1
+ /**
2
+ * An inlined enum containing useful character codes (to be used with String.charCodeAt).
3
+ * Please leave the const keyword such that it gets inlined when compiled to JavaScript!
4
+ */
5
+ export declare const enum CharCode {
6
+ Null = 0,
7
+ /**
8
+ * The `\b` character.
9
+ */
10
+ Backspace = 8,
11
+ /**
12
+ * The `\t` character.
13
+ */
14
+ Tab = 9,
15
+ /**
16
+ * The `\n` character.
17
+ */
18
+ LineFeed = 10,
19
+ /**
20
+ * The `\r` character.
21
+ */
22
+ CarriageReturn = 13,
23
+ Space = 32,
24
+ /**
25
+ * The `!` character.
26
+ */
27
+ ExclamationMark = 33,
28
+ /**
29
+ * The `"` character.
30
+ */
31
+ DoubleQuote = 34,
32
+ /**
33
+ * The `#` character.
34
+ */
35
+ Hash = 35,
36
+ /**
37
+ * The `$` character.
38
+ */
39
+ DollarSign = 36,
40
+ /**
41
+ * The `%` character.
42
+ */
43
+ PercentSign = 37,
44
+ /**
45
+ * The `&` character.
46
+ */
47
+ Ampersand = 38,
48
+ /**
49
+ * The `'` character.
50
+ */
51
+ SingleQuote = 39,
52
+ /**
53
+ * The `(` character.
54
+ */
55
+ OpenParen = 40,
56
+ /**
57
+ * The `)` character.
58
+ */
59
+ CloseParen = 41,
60
+ /**
61
+ * The `*` character.
62
+ */
63
+ Asterisk = 42,
64
+ /**
65
+ * The `+` character.
66
+ */
67
+ Plus = 43,
68
+ /**
69
+ * The `,` character.
70
+ */
71
+ Comma = 44,
72
+ /**
73
+ * The `-` character.
74
+ */
75
+ Dash = 45,
76
+ /**
77
+ * The `.` character.
78
+ */
79
+ Period = 46,
80
+ /**
81
+ * The `/` character.
82
+ */
83
+ Slash = 47,
84
+ Digit0 = 48,
85
+ Digit1 = 49,
86
+ Digit2 = 50,
87
+ Digit3 = 51,
88
+ Digit4 = 52,
89
+ Digit5 = 53,
90
+ Digit6 = 54,
91
+ Digit7 = 55,
92
+ Digit8 = 56,
93
+ Digit9 = 57,
94
+ /**
95
+ * The `:` character.
96
+ */
97
+ Colon = 58,
98
+ /**
99
+ * The `;` character.
100
+ */
101
+ Semicolon = 59,
102
+ /**
103
+ * The `<` character.
104
+ */
105
+ LessThan = 60,
106
+ /**
107
+ * The `=` character.
108
+ */
109
+ Equals = 61,
110
+ /**
111
+ * The `>` character.
112
+ */
113
+ GreaterThan = 62,
114
+ /**
115
+ * The `?` character.
116
+ */
117
+ QuestionMark = 63,
118
+ /**
119
+ * The `@` character.
120
+ */
121
+ AtSign = 64,
122
+ A = 65,
123
+ B = 66,
124
+ C = 67,
125
+ D = 68,
126
+ E = 69,
127
+ F = 70,
128
+ G = 71,
129
+ H = 72,
130
+ I = 73,
131
+ J = 74,
132
+ K = 75,
133
+ L = 76,
134
+ M = 77,
135
+ N = 78,
136
+ O = 79,
137
+ P = 80,
138
+ Q = 81,
139
+ R = 82,
140
+ S = 83,
141
+ T = 84,
142
+ U = 85,
143
+ V = 86,
144
+ W = 87,
145
+ X = 88,
146
+ Y = 89,
147
+ Z = 90,
148
+ /**
149
+ * The `[` character.
150
+ */
151
+ OpenSquareBracket = 91,
152
+ /**
153
+ * The `\` character.
154
+ */
155
+ Backslash = 92,
156
+ /**
157
+ * The `]` character.
158
+ */
159
+ CloseSquareBracket = 93,
160
+ /**
161
+ * The `^` character.
162
+ */
163
+ Caret = 94,
164
+ /**
165
+ * The `_` character.
166
+ */
167
+ Underline = 95,
168
+ /**
169
+ * The ``(`)`` character.
170
+ */
171
+ BackTick = 96,
172
+ a = 97,
173
+ b = 98,
174
+ c = 99,
175
+ d = 100,
176
+ e = 101,
177
+ f = 102,
178
+ g = 103,
179
+ h = 104,
180
+ i = 105,
181
+ j = 106,
182
+ k = 107,
183
+ l = 108,
184
+ m = 109,
185
+ n = 110,
186
+ o = 111,
187
+ p = 112,
188
+ q = 113,
189
+ r = 114,
190
+ s = 115,
191
+ t = 116,
192
+ u = 117,
193
+ v = 118,
194
+ w = 119,
195
+ x = 120,
196
+ y = 121,
197
+ z = 122,
198
+ /**
199
+ * The `{` character.
200
+ */
201
+ OpenCurlyBrace = 123,
202
+ /**
203
+ * The `|` character.
204
+ */
205
+ Pipe = 124,
206
+ /**
207
+ * The `}` character.
208
+ */
209
+ CloseCurlyBrace = 125,
210
+ /**
211
+ * The `~` character.
212
+ */
213
+ Tilde = 126,
214
+ U_Combining_Grave_Accent = 768,// U+0300 Combining Grave Accent
215
+ U_Combining_Acute_Accent = 769,// U+0301 Combining Acute Accent
216
+ U_Combining_Circumflex_Accent = 770,// U+0302 Combining Circumflex Accent
217
+ U_Combining_Tilde = 771,// U+0303 Combining Tilde
218
+ U_Combining_Macron = 772,// U+0304 Combining Macron
219
+ U_Combining_Overline = 773,// U+0305 Combining Overline
220
+ U_Combining_Breve = 774,// U+0306 Combining Breve
221
+ U_Combining_Dot_Above = 775,// U+0307 Combining Dot Above
222
+ U_Combining_Diaeresis = 776,// U+0308 Combining Diaeresis
223
+ U_Combining_Hook_Above = 777,// U+0309 Combining Hook Above
224
+ U_Combining_Ring_Above = 778,// U+030A Combining Ring Above
225
+ U_Combining_Double_Acute_Accent = 779,// U+030B Combining Double Acute Accent
226
+ U_Combining_Caron = 780,// U+030C Combining Caron
227
+ U_Combining_Vertical_Line_Above = 781,// U+030D Combining Vertical Line Above
228
+ U_Combining_Double_Vertical_Line_Above = 782,// U+030E Combining Double Vertical Line Above
229
+ U_Combining_Double_Grave_Accent = 783,// U+030F Combining Double Grave Accent
230
+ U_Combining_Candrabindu = 784,// U+0310 Combining Candrabindu
231
+ U_Combining_Inverted_Breve = 785,// U+0311 Combining Inverted Breve
232
+ U_Combining_Turned_Comma_Above = 786,// U+0312 Combining Turned Comma Above
233
+ U_Combining_Comma_Above = 787,// U+0313 Combining Comma Above
234
+ U_Combining_Reversed_Comma_Above = 788,// U+0314 Combining Reversed Comma Above
235
+ U_Combining_Comma_Above_Right = 789,// U+0315 Combining Comma Above Right
236
+ U_Combining_Grave_Accent_Below = 790,// U+0316 Combining Grave Accent Below
237
+ U_Combining_Acute_Accent_Below = 791,// U+0317 Combining Acute Accent Below
238
+ U_Combining_Left_Tack_Below = 792,// U+0318 Combining Left Tack Below
239
+ U_Combining_Right_Tack_Below = 793,// U+0319 Combining Right Tack Below
240
+ U_Combining_Left_Angle_Above = 794,// U+031A Combining Left Angle Above
241
+ U_Combining_Horn = 795,// U+031B Combining Horn
242
+ U_Combining_Left_Half_Ring_Below = 796,// U+031C Combining Left Half Ring Below
243
+ U_Combining_Up_Tack_Below = 797,// U+031D Combining Up Tack Below
244
+ U_Combining_Down_Tack_Below = 798,// U+031E Combining Down Tack Below
245
+ U_Combining_Plus_Sign_Below = 799,// U+031F Combining Plus Sign Below
246
+ U_Combining_Minus_Sign_Below = 800,// U+0320 Combining Minus Sign Below
247
+ U_Combining_Palatalized_Hook_Below = 801,// U+0321 Combining Palatalized Hook Below
248
+ U_Combining_Retroflex_Hook_Below = 802,// U+0322 Combining Retroflex Hook Below
249
+ U_Combining_Dot_Below = 803,// U+0323 Combining Dot Below
250
+ U_Combining_Diaeresis_Below = 804,// U+0324 Combining Diaeresis Below
251
+ U_Combining_Ring_Below = 805,// U+0325 Combining Ring Below
252
+ U_Combining_Comma_Below = 806,// U+0326 Combining Comma Below
253
+ U_Combining_Cedilla = 807,// U+0327 Combining Cedilla
254
+ U_Combining_Ogonek = 808,// U+0328 Combining Ogonek
255
+ U_Combining_Vertical_Line_Below = 809,// U+0329 Combining Vertical Line Below
256
+ U_Combining_Bridge_Below = 810,// U+032A Combining Bridge Below
257
+ U_Combining_Inverted_Double_Arch_Below = 811,// U+032B Combining Inverted Double Arch Below
258
+ U_Combining_Caron_Below = 812,// U+032C Combining Caron Below
259
+ U_Combining_Circumflex_Accent_Below = 813,// U+032D Combining Circumflex Accent Below
260
+ U_Combining_Breve_Below = 814,// U+032E Combining Breve Below
261
+ U_Combining_Inverted_Breve_Below = 815,// U+032F Combining Inverted Breve Below
262
+ U_Combining_Tilde_Below = 816,// U+0330 Combining Tilde Below
263
+ U_Combining_Macron_Below = 817,// U+0331 Combining Macron Below
264
+ U_Combining_Low_Line = 818,// U+0332 Combining Low Line
265
+ U_Combining_Double_Low_Line = 819,// U+0333 Combining Double Low Line
266
+ U_Combining_Tilde_Overlay = 820,// U+0334 Combining Tilde Overlay
267
+ U_Combining_Short_Stroke_Overlay = 821,// U+0335 Combining Short Stroke Overlay
268
+ U_Combining_Long_Stroke_Overlay = 822,// U+0336 Combining Long Stroke Overlay
269
+ U_Combining_Short_Solidus_Overlay = 823,// U+0337 Combining Short Solidus Overlay
270
+ U_Combining_Long_Solidus_Overlay = 824,// U+0338 Combining Long Solidus Overlay
271
+ U_Combining_Right_Half_Ring_Below = 825,// U+0339 Combining Right Half Ring Below
272
+ U_Combining_Inverted_Bridge_Below = 826,// U+033A Combining Inverted Bridge Below
273
+ U_Combining_Square_Below = 827,// U+033B Combining Square Below
274
+ U_Combining_Seagull_Below = 828,// U+033C Combining Seagull Below
275
+ U_Combining_X_Above = 829,// U+033D Combining X Above
276
+ U_Combining_Vertical_Tilde = 830,// U+033E Combining Vertical Tilde
277
+ U_Combining_Double_Overline = 831,// U+033F Combining Double Overline
278
+ U_Combining_Grave_Tone_Mark = 832,// U+0340 Combining Grave Tone Mark
279
+ U_Combining_Acute_Tone_Mark = 833,// U+0341 Combining Acute Tone Mark
280
+ U_Combining_Greek_Perispomeni = 834,// U+0342 Combining Greek Perispomeni
281
+ U_Combining_Greek_Koronis = 835,// U+0343 Combining Greek Koronis
282
+ U_Combining_Greek_Dialytika_Tonos = 836,// U+0344 Combining Greek Dialytika Tonos
283
+ U_Combining_Greek_Ypogegrammeni = 837,// U+0345 Combining Greek Ypogegrammeni
284
+ U_Combining_Bridge_Above = 838,// U+0346 Combining Bridge Above
285
+ U_Combining_Equals_Sign_Below = 839,// U+0347 Combining Equals Sign Below
286
+ U_Combining_Double_Vertical_Line_Below = 840,// U+0348 Combining Double Vertical Line Below
287
+ U_Combining_Left_Angle_Below = 841,// U+0349 Combining Left Angle Below
288
+ U_Combining_Not_Tilde_Above = 842,// U+034A Combining Not Tilde Above
289
+ U_Combining_Homothetic_Above = 843,// U+034B Combining Homothetic Above
290
+ U_Combining_Almost_Equal_To_Above = 844,// U+034C Combining Almost Equal To Above
291
+ U_Combining_Left_Right_Arrow_Below = 845,// U+034D Combining Left Right Arrow Below
292
+ U_Combining_Upwards_Arrow_Below = 846,// U+034E Combining Upwards Arrow Below
293
+ U_Combining_Grapheme_Joiner = 847,// U+034F Combining Grapheme Joiner
294
+ U_Combining_Right_Arrowhead_Above = 848,// U+0350 Combining Right Arrowhead Above
295
+ U_Combining_Left_Half_Ring_Above = 849,// U+0351 Combining Left Half Ring Above
296
+ U_Combining_Fermata = 850,// U+0352 Combining Fermata
297
+ U_Combining_X_Below = 851,// U+0353 Combining X Below
298
+ U_Combining_Left_Arrowhead_Below = 852,// U+0354 Combining Left Arrowhead Below
299
+ U_Combining_Right_Arrowhead_Below = 853,// U+0355 Combining Right Arrowhead Below
300
+ U_Combining_Right_Arrowhead_And_Up_Arrowhead_Below = 854,// U+0356 Combining Right Arrowhead And Up Arrowhead Below
301
+ U_Combining_Right_Half_Ring_Above = 855,// U+0357 Combining Right Half Ring Above
302
+ U_Combining_Dot_Above_Right = 856,// U+0358 Combining Dot Above Right
303
+ U_Combining_Asterisk_Below = 857,// U+0359 Combining Asterisk Below
304
+ U_Combining_Double_Ring_Below = 858,// U+035A Combining Double Ring Below
305
+ U_Combining_Zigzag_Above = 859,// U+035B Combining Zigzag Above
306
+ U_Combining_Double_Breve_Below = 860,// U+035C Combining Double Breve Below
307
+ U_Combining_Double_Breve = 861,// U+035D Combining Double Breve
308
+ U_Combining_Double_Macron = 862,// U+035E Combining Double Macron
309
+ U_Combining_Double_Macron_Below = 863,// U+035F Combining Double Macron Below
310
+ U_Combining_Double_Tilde = 864,// U+0360 Combining Double Tilde
311
+ U_Combining_Double_Inverted_Breve = 865,// U+0361 Combining Double Inverted Breve
312
+ U_Combining_Double_Rightwards_Arrow_Below = 866,// U+0362 Combining Double Rightwards Arrow Below
313
+ U_Combining_Latin_Small_Letter_A = 867,// U+0363 Combining Latin Small Letter A
314
+ U_Combining_Latin_Small_Letter_E = 868,// U+0364 Combining Latin Small Letter E
315
+ U_Combining_Latin_Small_Letter_I = 869,// U+0365 Combining Latin Small Letter I
316
+ U_Combining_Latin_Small_Letter_O = 870,// U+0366 Combining Latin Small Letter O
317
+ U_Combining_Latin_Small_Letter_U = 871,// U+0367 Combining Latin Small Letter U
318
+ U_Combining_Latin_Small_Letter_C = 872,// U+0368 Combining Latin Small Letter C
319
+ U_Combining_Latin_Small_Letter_D = 873,// U+0369 Combining Latin Small Letter D
320
+ U_Combining_Latin_Small_Letter_H = 874,// U+036A Combining Latin Small Letter H
321
+ U_Combining_Latin_Small_Letter_M = 875,// U+036B Combining Latin Small Letter M
322
+ U_Combining_Latin_Small_Letter_R = 876,// U+036C Combining Latin Small Letter R
323
+ U_Combining_Latin_Small_Letter_T = 877,// U+036D Combining Latin Small Letter T
324
+ U_Combining_Latin_Small_Letter_V = 878,// U+036E Combining Latin Small Letter V
325
+ U_Combining_Latin_Small_Letter_X = 879,// U+036F Combining Latin Small Letter X
326
+ /**
327
+ * Unicode Character 'LINE SEPARATOR' (U+2028)
328
+ * http://www.fileformat.info/info/unicode/char/2028/index.htm
329
+ */
330
+ LINE_SEPARATOR = 8232,
331
+ /**
332
+ * Unicode Character 'PARAGRAPH SEPARATOR' (U+2029)
333
+ * http://www.fileformat.info/info/unicode/char/2029/index.htm
334
+ */
335
+ PARAGRAPH_SEPARATOR = 8233,
336
+ /**
337
+ * Unicode Character 'NEXT LINE' (U+0085)
338
+ * http://www.fileformat.info/info/unicode/char/0085/index.htm
339
+ */
340
+ NEXT_LINE = 133,
341
+ U_CIRCUMFLEX = 94,// U+005E CIRCUMFLEX
342
+ U_GRAVE_ACCENT = 96,// U+0060 GRAVE ACCENT
343
+ U_DIAERESIS = 168,// U+00A8 DIAERESIS
344
+ U_MACRON = 175,// U+00AF MACRON
345
+ U_ACUTE_ACCENT = 180,// U+00B4 ACUTE ACCENT
346
+ U_CEDILLA = 184,// U+00B8 CEDILLA
347
+ U_MODIFIER_LETTER_LEFT_ARROWHEAD = 706,// U+02C2 MODIFIER LETTER LEFT ARROWHEAD
348
+ U_MODIFIER_LETTER_RIGHT_ARROWHEAD = 707,// U+02C3 MODIFIER LETTER RIGHT ARROWHEAD
349
+ U_MODIFIER_LETTER_UP_ARROWHEAD = 708,// U+02C4 MODIFIER LETTER UP ARROWHEAD
350
+ U_MODIFIER_LETTER_DOWN_ARROWHEAD = 709,// U+02C5 MODIFIER LETTER DOWN ARROWHEAD
351
+ U_MODIFIER_LETTER_CENTRED_RIGHT_HALF_RING = 722,// U+02D2 MODIFIER LETTER CENTRED RIGHT HALF RING
352
+ U_MODIFIER_LETTER_CENTRED_LEFT_HALF_RING = 723,// U+02D3 MODIFIER LETTER CENTRED LEFT HALF RING
353
+ U_MODIFIER_LETTER_UP_TACK = 724,// U+02D4 MODIFIER LETTER UP TACK
354
+ U_MODIFIER_LETTER_DOWN_TACK = 725,// U+02D5 MODIFIER LETTER DOWN TACK
355
+ U_MODIFIER_LETTER_PLUS_SIGN = 726,// U+02D6 MODIFIER LETTER PLUS SIGN
356
+ U_MODIFIER_LETTER_MINUS_SIGN = 727,// U+02D7 MODIFIER LETTER MINUS SIGN
357
+ U_BREVE = 728,// U+02D8 BREVE
358
+ U_DOT_ABOVE = 729,// U+02D9 DOT ABOVE
359
+ U_RING_ABOVE = 730,// U+02DA RING ABOVE
360
+ U_OGONEK = 731,// U+02DB OGONEK
361
+ U_SMALL_TILDE = 732,// U+02DC SMALL TILDE
362
+ U_DOUBLE_ACUTE_ACCENT = 733,// U+02DD DOUBLE ACUTE ACCENT
363
+ U_MODIFIER_LETTER_RHOTIC_HOOK = 734,// U+02DE MODIFIER LETTER RHOTIC HOOK
364
+ U_MODIFIER_LETTER_CROSS_ACCENT = 735,// U+02DF MODIFIER LETTER CROSS ACCENT
365
+ U_MODIFIER_LETTER_EXTRA_HIGH_TONE_BAR = 741,// U+02E5 MODIFIER LETTER EXTRA-HIGH TONE BAR
366
+ U_MODIFIER_LETTER_HIGH_TONE_BAR = 742,// U+02E6 MODIFIER LETTER HIGH TONE BAR
367
+ U_MODIFIER_LETTER_MID_TONE_BAR = 743,// U+02E7 MODIFIER LETTER MID TONE BAR
368
+ U_MODIFIER_LETTER_LOW_TONE_BAR = 744,// U+02E8 MODIFIER LETTER LOW TONE BAR
369
+ U_MODIFIER_LETTER_EXTRA_LOW_TONE_BAR = 745,// U+02E9 MODIFIER LETTER EXTRA-LOW TONE BAR
370
+ U_MODIFIER_LETTER_YIN_DEPARTING_TONE_MARK = 746,// U+02EA MODIFIER LETTER YIN DEPARTING TONE MARK
371
+ U_MODIFIER_LETTER_YANG_DEPARTING_TONE_MARK = 747,// U+02EB MODIFIER LETTER YANG DEPARTING TONE MARK
372
+ U_MODIFIER_LETTER_UNASPIRATED = 749,// U+02ED MODIFIER LETTER UNASPIRATED
373
+ U_MODIFIER_LETTER_LOW_DOWN_ARROWHEAD = 751,// U+02EF MODIFIER LETTER LOW DOWN ARROWHEAD
374
+ U_MODIFIER_LETTER_LOW_UP_ARROWHEAD = 752,// U+02F0 MODIFIER LETTER LOW UP ARROWHEAD
375
+ U_MODIFIER_LETTER_LOW_LEFT_ARROWHEAD = 753,// U+02F1 MODIFIER LETTER LOW LEFT ARROWHEAD
376
+ U_MODIFIER_LETTER_LOW_RIGHT_ARROWHEAD = 754,// U+02F2 MODIFIER LETTER LOW RIGHT ARROWHEAD
377
+ U_MODIFIER_LETTER_LOW_RING = 755,// U+02F3 MODIFIER LETTER LOW RING
378
+ U_MODIFIER_LETTER_MIDDLE_GRAVE_ACCENT = 756,// U+02F4 MODIFIER LETTER MIDDLE GRAVE ACCENT
379
+ U_MODIFIER_LETTER_MIDDLE_DOUBLE_GRAVE_ACCENT = 757,// U+02F5 MODIFIER LETTER MIDDLE DOUBLE GRAVE ACCENT
380
+ U_MODIFIER_LETTER_MIDDLE_DOUBLE_ACUTE_ACCENT = 758,// U+02F6 MODIFIER LETTER MIDDLE DOUBLE ACUTE ACCENT
381
+ U_MODIFIER_LETTER_LOW_TILDE = 759,// U+02F7 MODIFIER LETTER LOW TILDE
382
+ U_MODIFIER_LETTER_RAISED_COLON = 760,// U+02F8 MODIFIER LETTER RAISED COLON
383
+ U_MODIFIER_LETTER_BEGIN_HIGH_TONE = 761,// U+02F9 MODIFIER LETTER BEGIN HIGH TONE
384
+ U_MODIFIER_LETTER_END_HIGH_TONE = 762,// U+02FA MODIFIER LETTER END HIGH TONE
385
+ U_MODIFIER_LETTER_BEGIN_LOW_TONE = 763,// U+02FB MODIFIER LETTER BEGIN LOW TONE
386
+ U_MODIFIER_LETTER_END_LOW_TONE = 764,// U+02FC MODIFIER LETTER END LOW TONE
387
+ U_MODIFIER_LETTER_SHELF = 765,// U+02FD MODIFIER LETTER SHELF
388
+ U_MODIFIER_LETTER_OPEN_SHELF = 766,// U+02FE MODIFIER LETTER OPEN SHELF
389
+ U_MODIFIER_LETTER_LOW_LEFT_ARROW = 767,// U+02FF MODIFIER LETTER LOW LEFT ARROW
390
+ U_GREEK_LOWER_NUMERAL_SIGN = 885,// U+0375 GREEK LOWER NUMERAL SIGN
391
+ U_GREEK_TONOS = 900,// U+0384 GREEK TONOS
392
+ U_GREEK_DIALYTIKA_TONOS = 901,// U+0385 GREEK DIALYTIKA TONOS
393
+ U_GREEK_KORONIS = 8125,// U+1FBD GREEK KORONIS
394
+ U_GREEK_PSILI = 8127,// U+1FBF GREEK PSILI
395
+ U_GREEK_PERISPOMENI = 8128,// U+1FC0 GREEK PERISPOMENI
396
+ U_GREEK_DIALYTIKA_AND_PERISPOMENI = 8129,// U+1FC1 GREEK DIALYTIKA AND PERISPOMENI
397
+ U_GREEK_PSILI_AND_VARIA = 8141,// U+1FCD GREEK PSILI AND VARIA
398
+ U_GREEK_PSILI_AND_OXIA = 8142,// U+1FCE GREEK PSILI AND OXIA
399
+ U_GREEK_PSILI_AND_PERISPOMENI = 8143,// U+1FCF GREEK PSILI AND PERISPOMENI
400
+ U_GREEK_DASIA_AND_VARIA = 8157,// U+1FDD GREEK DASIA AND VARIA
401
+ U_GREEK_DASIA_AND_OXIA = 8158,// U+1FDE GREEK DASIA AND OXIA
402
+ U_GREEK_DASIA_AND_PERISPOMENI = 8159,// U+1FDF GREEK DASIA AND PERISPOMENI
403
+ U_GREEK_DIALYTIKA_AND_VARIA = 8173,// U+1FED GREEK DIALYTIKA AND VARIA
404
+ U_GREEK_DIALYTIKA_AND_OXIA = 8174,// U+1FEE GREEK DIALYTIKA AND OXIA
405
+ U_GREEK_VARIA = 8175,// U+1FEF GREEK VARIA
406
+ U_GREEK_OXIA = 8189,// U+1FFD GREEK OXIA
407
+ U_GREEK_DASIA = 8190,// U+1FFE GREEK DASIA
408
+ U_IDEOGRAPHIC_FULL_STOP = 12290,// U+3002 IDEOGRAPHIC FULL STOP
409
+ U_LEFT_CORNER_BRACKET = 12300,// U+300C LEFT CORNER BRACKET
410
+ U_RIGHT_CORNER_BRACKET = 12301,// U+300D RIGHT CORNER BRACKET
411
+ U_LEFT_BLACK_LENTICULAR_BRACKET = 12304,// U+3010 LEFT BLACK LENTICULAR BRACKET
412
+ U_RIGHT_BLACK_LENTICULAR_BRACKET = 12305,// U+3011 RIGHT BLACK LENTICULAR BRACKET
413
+ U_OVERLINE = 8254,// Unicode Character 'OVERLINE'
414
+ /**
415
+ * UTF-8 BOM
416
+ * Unicode Character 'ZERO WIDTH NO-BREAK SPACE' (U+FEFF)
417
+ * http://www.fileformat.info/info/unicode/char/feff/index.htm
418
+ */
419
+ UTF8_BOM = 65279,
420
+ U_FULLWIDTH_SEMICOLON = 65307,// U+FF1B FULLWIDTH SEMICOLON
421
+ U_FULLWIDTH_COMMA = 65292
422
+ }