diff options
Diffstat (limited to 'src/JSON.js')
| -rw-r--r-- | src/JSON.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/JSON.js b/src/JSON.js index d0ded009..51a12860 100644 --- a/src/JSON.js +++ b/src/JSON.js @@ -41,7 +41,7 @@ function fromJson(json, useNative) {      if (useNative && window.JSON && window.JSON.parse) {        obj = JSON.parse(json);      } else { -      obj = parser(json, true).primary()(); +      obj = parseJson(json, true)();      }      return transformDates(obj);    } catch (e) { | 
