nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jquery / src / ajax / parseJSON.js
1 define( [
2         "../core"
3 ], function( jQuery ) {
4
5 // Support: Android 2.3
6 // Workaround failure to string-cast null input
7 jQuery.parseJSON = function( data ) {
8         return JSON.parse( data + "" );
9 };
10
11 return jQuery.parseJSON;
12
13 } );