sp-codes.de/bower_components/jquery/src/ajax/parseJSON.js
2016-10-28 19:33:25 +02:00

14 lines
224 B
JavaScript

define( [
"../core"
], function( jQuery ) {
// Support: Android 2.3
// Workaround failure to string-cast null input
jQuery.parseJSON = function( data ) {
return JSON.parse( data + "" );
};
return jQuery.parseJSON;
} );