Files
jellyfin-web/dashboard-ui/bower_components/jquery/src/ajax/parseJSON.js
T
Luke Pulverenti d84c5a7c1d update components
2016-01-09 13:36:35 -05:00

14 lines
224 B
JavaScript

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;
} );