diffux/diffux

View on GitHub
bower_components/jquery/src/ajax/parseJSON.js

Summary

Maintainability
A
0 mins
Test Coverage
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;

});