We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b5b1d4 commit b827df2Copy full SHA for b827df2
1 file changed
test/test-utils.js
@@ -118,7 +118,7 @@ function prototypeString() {
118
assert.ok('""'.isJSON() === true, 'string.isJSON("")');
119
assert.ok('12'.isJSON() === true, 'string.isJSON(12)');
120
assert.ok('[}'.isJSON() === false, 'string.isJSON([})');
121
- assert.ok('['.isJSON() === false, 'string.isJSON([")');
+ assert.ok('['.isJSON() === false, 'string.isJSON([)');
122
assert.ok(str.isJSON() === false, 'string.isJSON()');
123
assert.ok(JSON.parse(JSON.stringify(new Date())).isJSONDate(), 'string.isJSONDate()');
124
0 commit comments