]> git.r.bdr.sh - rbdr/dotfiles/blob - atom/packages/ex-mode/node_modules/space-pen/node_modules/jquery/src/ajax/parseJSON.js
3a96d15b9d2c0beacacc072277f41de7ac231f47
[rbdr/dotfiles] / atom / packages / ex-mode / node_modules / space-pen / node_modules / jquery / src / ajax / parseJSON.js
1 define([
2 "../core"
3 ], function( jQuery ) {
4
5 // Support: Android 2.3
6 // Workaround failure to string-cast null input
7 jQuery.parseJSON = function( data ) {
8 return JSON.parse( data + "" );
9 };
10
11 return jQuery.parseJSON;
12
13 });