Skip to content

Commit 36df833

Browse files
/*jslint*/
1 parent 7a18252 commit 36df833

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

json.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
json.js
3-
2011-02-23
3+
2011-08-30
44
55
Public Domain
66
@@ -183,7 +183,7 @@
183183
redistribute.
184184
*/
185185

186-
/*jslint evil: true, regexp: false */
186+
/*jslint evil: true, regexp: true, unparam: true */
187187

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

204204
(function () {
205-
"use strict";
205+
'use strict';
206206

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

json2.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
http://www.JSON.org/json2.js
3-
2011-02-23
2+
json2.js
3+
2011-08-30
44
55
Public Domain.
66
@@ -146,7 +146,7 @@
146146
redistribute.
147147
*/
148148

149-
/*jslint evil: true, strict: false, regexp: false */
149+
/*jslint evil: true, regexp: true, unparam: true */
150150

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

167167
(function () {
168-
"use strict";
168+
'use strict';
169169

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

0 commit comments

Comments
 (0)