File "parseJSON.js"

Full Path: /srv/www/www.cadoro.it/src/lib/jquery/src/ajax/parseJSON.js
File size: 224 bytes
MIME-type: text/plain
Charset: utf-8

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;

} );