@@ -14,12 +14,12 @@ The files in this collection implement JSON encoders/decoders in JavaScript.
14
14
15
15
JSON became a built-in feature of JavaScript when the ECMAScript Programming
16
16
Language Standard - Fifth Edition was adopted by the ECMA General Assembly
17
- in December 2009. Most of the files in this collection are for applications
18
- that are expected to run in obsolete web browsers. For most purposes, json2.js
17
+ in December 2009. Most of the files in this collection are for applications
18
+ that are expected to run in obsolete web browsers. For most purposes, json2.js
19
19
is the best choice.
20
20
21
21
22
- json2.js: This file creates a JSON property in the global object, if there
22
+ json2.js: This file creates a JSON property in the global object, if there
23
23
isn't already one, setting its value to an object containing a stringify
24
24
method and a parse method. The parse method uses the eval method to do the
25
25
parsing, guarding it with several regular expressions to defend against
@@ -33,10 +33,10 @@ file is not recommended.
33
33
json_parse.js: This file contains an alternative JSON parse function that
34
34
uses recursive descent instead of eval.
35
35
36
- json_parse_state: This files contains an alternative JSON parse function that
36
+ json_parse_state.js : This files contains an alternative JSON parse function that
37
37
uses a state machine instead of eval.
38
38
39
39
cycle.js: This file contains two functions, JSON.decycle and JSON.retrocycle,
40
40
which make it possible to encode cyclical structures and dags in JSON, and to
41
- then recover them. JSONPath is used to represent the links.
42
- http://GOESSNER.net/articles/JsonPath/
41
+ then recover them. JSONPath is used to represent the links.
42
+ http://GOESSNER.net/articles/JsonPath/
0 commit comments