Skip to content

Commit

Permalink
/*jslint*/
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascrockford committed Aug 30, 2011
1 parent 7a18252 commit 36df833
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions json.js
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
/*
json.js
2011-02-23
2011-08-30
Public Domain
Expand Down Expand Up @@ -183,7 183,7 @@
redistribute.
*/

/*jslint evil: true, regexp: false */
/*jslint evil: true, regexp: true, unparam: true */

/*members "", "\b", "\t", "\n", "\f", "\r", "\"", JSON, "\\", apply,
call, charCodeAt, getUTCDate, getUTCFullYear, getUTCHours,
Expand All @@ -202,7 202,7 @@ if (!JSON) {
}

(function () {
"use strict";
'use strict';

function f(n) {
// Format integers to have at least two digits.
Expand Down
8 changes: 4 additions & 4 deletions json2.js
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
/*
http://www.JSON.org/json2.js
2011-02-23
json2.js
2011-08-30
Public Domain.
Expand Down Expand Up @@ -146,7 146,7 @@
redistribute.
*/

/*jslint evil: true, strict: false, regexp: false */
/*jslint evil: true, regexp: true, unparam: true */

/*members "", "\b", "\t", "\n", "\f", "\r", "\"", JSON, "\\", apply,
call, charCodeAt, getUTCDate, getUTCFullYear, getUTCHours,
Expand All @@ -165,7 165,7 @@ if (!JSON) {
}

(function () {
"use strict";
'use strict';

function f(n) {
// Format integers to have at least two digits.
Expand Down

0 comments on commit 36df833

Please sign in to comment.