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 'node_modules/jquery/src/ajax/parseJSON.js')
-rw-r--r--node_modules/jquery/src/ajax/parseJSON.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/node_modules/jquery/src/ajax/parseJSON.js b/node_modules/jquery/src/ajax/parseJSON.js
new file mode 100644
index 0000000000..11918b06d6
--- /dev/null
+++ b/node_modules/jquery/src/ajax/parseJSON.js
@@ -0,0 +1,13 @@
+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;
+
+} );