UNPKG

222 BJavaScriptView Raw
1define([
2 "../core"
3], function( jQuery ) {
4
5// Support: Android 2.3
6// Workaround failure to string-cast null input
7jQuery.parseJSON = function( data ) {
8 return JSON.parse( data + "" );
9};
10
11return jQuery.parseJSON;
12
13});