Initial Save
This commit is contained in:
8
node_modules/core-js-pure/es/json/index.js
generated
vendored
Normal file
8
node_modules/core-js-pure/es/json/index.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
'use strict';
|
||||
require('../../modules/es.date.to-json');
|
||||
require('../../modules/es.json.stringify');
|
||||
require('../../modules/es.json.to-string-tag');
|
||||
var path = require('../../internals/path');
|
||||
|
||||
// eslint-disable-next-line es/no-json -- safe
|
||||
module.exports = path.JSON || (path.JSON = { stringify: JSON.stringify });
|
||||
13
node_modules/core-js-pure/es/json/stringify.js
generated
vendored
Normal file
13
node_modules/core-js-pure/es/json/stringify.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
'use strict';
|
||||
require('../../modules/es.date.to-json');
|
||||
require('../../modules/es.json.stringify');
|
||||
var path = require('../../internals/path');
|
||||
var apply = require('../../internals/function-apply');
|
||||
|
||||
// eslint-disable-next-line es/no-json -- safe
|
||||
if (!path.JSON) path.JSON = { stringify: JSON.stringify };
|
||||
|
||||
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
||||
module.exports = function stringify(it, replacer, space) {
|
||||
return apply(path.JSON.stringify, null, arguments);
|
||||
};
|
||||
4
node_modules/core-js-pure/es/json/to-string-tag.js
generated
vendored
Normal file
4
node_modules/core-js-pure/es/json/to-string-tag.js
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
'use strict';
|
||||
require('../../modules/es.json.to-string-tag');
|
||||
|
||||
module.exports = 'JSON';
|
||||
Reference in New Issue
Block a user