Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 660 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 660 Bytes

json-js

CircleCI

Actions Status

json parser implemented by JavaScript

true => true
false => false
null => null
[] => []
[true, false, null, "\u1234abc"] => [ true, false, null, 'ሴabc' ]
"abcd" => abcd
"a\nb" => a
b
"\u1234abc" => ሴabc
{ "str": "\u1234abc", "arr": [true, false, null, "\u1234abc"] } => { str: 'ሴabc', arr: [ true, false, null, 'ሴabc' ] }
0 => 0
-123 => -123
123 => 123
123e2 => 12300
123e-2 => 1.23