diff options
Diffstat (limited to 'src/ajax/parseJSON.js')
-rw-r--r-- | src/ajax/parseJSON.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ajax/parseJSON.js b/src/ajax/parseJSON.js new file mode 100644 index 000000000..9d2ada95b --- /dev/null +++ b/src/ajax/parseJSON.js @@ -0,0 +1,8 @@ +define([ + "../core" +], function( jQuery ) { + + jQuery.parseJSON = JSON.parse; + + return jQuery.parseJSON; +}); |