Files
Yi.Admin/WebFirst/wwwroot/vendors/jquery/src/ajax/parseJSON.js

14 lines
224 B
JavaScript
Raw Normal View History

2022-04-03 23:21:53 +08:00
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;
} );