Skip to content

Commit ba86c4a

Browse files
committed
fix #80 fix nimn chars
1 parent c1aabb4 commit ba86c4a

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

src/nimndata.js

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,19 @@ const char = function(a) {
44
};
55

66
const chars = {
7-
nilChar: char(254),
8-
missingChar: char(200),
9-
nilPremitive: char(176),
10-
missingPremitive: char(201),
11-
emptyChar: char(177),
12-
emptyValue: char(178),
13-
boundryChar: char(186),
14-
arrayEnd: char(197),
7+
nilChar : char(176),
8+
missingChar : char(201),
9+
nilPremitive : char(175),
10+
missingPremitive : char(200),
11+
12+
emptyChar : char(178),
13+
emptyValue: char(177),//empty Premitive
14+
15+
boundryChar : char(179),
16+
1517
objStart: char(198),
16-
arrStart: char(199)
18+
arrStart: char(204),
19+
arrayEnd: char(185),
1720
};
1821

1922
const charsArr = [
@@ -23,6 +26,7 @@ const charsArr = [
2326
chars.missingPremitive,
2427
chars.boundryChar,
2528
chars.emptyChar,
29+
chars.emptyValue,
2630
chars.arrayEnd,
2731
chars.objStart,
2832
chars.arrStart

0 commit comments

Comments
 (0)