aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/fn/json/stringify.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/fn/json/stringify.js')
-rw-r--r--node_modules/core-js/fn/json/stringify.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/node_modules/core-js/fn/json/stringify.js b/node_modules/core-js/fn/json/stringify.js
index fef242507..f0cac86af 100644
--- a/node_modules/core-js/fn/json/stringify.js
+++ b/node_modules/core-js/fn/json/stringify.js
@@ -1,4 +1,5 @@
-var core = require('../../modules/$.core');
+var core = require('../../modules/_core')
+ , $JSON = core.JSON || (core.JSON = {stringify: JSON.stringify});
module.exports = function stringify(it){ // eslint-disable-line no-unused-vars
- return (core.JSON && core.JSON.stringify || JSON.stringify).apply(JSON, arguments);
+ return $JSON.stringify.apply($JSON, arguments);
}; \ No newline at end of file