Skip to content

Commit 5da6de9

Browse files
.js
1 parent 47a9882 commit 5da6de9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README

100755100644
+6-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ The files in this collection implement JSON encoders/decoders in JavaScript.
1414

1515
JSON became a built-in feature of JavaScript when the ECMAScript Programming
1616
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
1919
is the best choice.
2020

2121

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
2323
isn't already one, setting its value to an object containing a stringify
2424
method and a parse method. The parse method uses the eval method to do the
2525
parsing, guarding it with several regular expressions to defend against
@@ -33,10 +33,10 @@ file is not recommended.
3333
json_parse.js: This file contains an alternative JSON parse function that
3434
uses recursive descent instead of eval.
3535

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
3737
uses a state machine instead of eval.
3838

3939
cycle.js: This file contains two functions, JSON.decycle and JSON.retrocycle,
4040
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

Comments
 (0)