File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed
Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,19 @@ const char = function(a) {
44} ;
55
66const 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
1922const 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
You can’t perform that action at this time.
0 commit comments