diff options
Diffstat (limited to 'couchjs/js/json2.js')
-rw-r--r-- | couchjs/js/json2.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/couchjs/js/json2.js b/couchjs/js/json2.js index 39d8f370..a1a3b170 100644 --- a/couchjs/js/json2.js +++ b/couchjs/js/json2.js @@ -1,6 +1,6 @@ /* http://www.JSON.org/json2.js - 2009-09-29 + 2010-03-20 Public Domain. @@ -433,6 +433,7 @@ if (!this.JSON) { // Unicode characters with escape sequences. JavaScript handles many characters // incorrectly, either silently deleting them, or treating them as line endings. + text = String(text); cx.lastIndex = 0; if (cx.test(text)) { text = text.replace(cx, function (a) { |