Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bower_components/jquery/src/ajax/parseJSON.js')
-rw-r--r--libs/bower_components/jquery/src/ajax/parseJSON.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/libs/bower_components/jquery/src/ajax/parseJSON.js b/libs/bower_components/jquery/src/ajax/parseJSON.js
index 69b5c837d8..34efb79b21 100644
--- a/libs/bower_components/jquery/src/ajax/parseJSON.js
+++ b/libs/bower_components/jquery/src/ajax/parseJSON.js
@@ -1,12 +1,14 @@
-define([
+define( [
"../core"
], function( jQuery ) {
var rvalidtokens = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
jQuery.parseJSON = function( data ) {
+
// Attempt to parse using the native JSON parser first
if ( window.JSON && window.JSON.parse ) {
+
// Support: Android 2.3
// Workaround failure to string-cast null input
return window.JSON.parse( data + "" );
@@ -41,11 +43,11 @@ jQuery.parseJSON = function( data ) {
// Remove this token
return "";
- }) ) ?
+ } ) ) ?
( Function( "return " + str ) )() :
jQuery.error( "Invalid JSON: " + data );
};
return jQuery.parseJSON;
-});
+} );