scratch

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 124  →  ?path2? @ 125
/bower_components/jquery/src/ajax/parseJSON.js
@@ -0,0 +1,13 @@
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;
 
});