We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc282ba commit cbfa8a9Copy full SHA for cbfa8a9
mf2/messageformat/src/cst/names.ts
@@ -16,7 +16,8 @@ const isNameStartCode = (cc: number) =>
16
(cc >= 0xd8 && cc <= 0xf6) || // Ø-ö
17
(cc >= 0xf8 && cc <= 0x2ff) ||
18
(cc >= 0x370 && cc <= 0x37d) ||
19
- (cc >= 0x37f && cc <= 0x1fff) ||
+ (cc >= 0x37f && cc <= 0x61b) ||
20
+ (cc >= 0x61d && cc <= 0x1fff) ||
21
(cc >= 0x200c && cc <= 0x200d) ||
22
(cc >= 0x2070 && cc <= 0x2187) ||
23
(cc >= 0x2c00 && cc <= 0x2fef) ||
0 commit comments