mirror of
https://github.com/musix-org/musix-oss
synced 2025-07-01 20:13:38 +00:00
Updated
This commit is contained in:
4
node_modules/core-js/es/json/index.js
generated
vendored
Normal file
4
node_modules/core-js/es/json/index.js
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
require('../../modules/es.json.to-string-tag');
|
||||
var path = require('../../internals/path');
|
||||
|
||||
module.exports = path.JSON || (path.JSON = { stringify: JSON.stringify });
|
6
node_modules/core-js/es/json/stringify.js
generated
vendored
Normal file
6
node_modules/core-js/es/json/stringify.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
var core = require('../../internals/path');
|
||||
var $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });
|
||||
|
||||
module.exports = function stringify(it) { // eslint-disable-line no-unused-vars
|
||||
return $JSON.stringify.apply($JSON, arguments);
|
||||
};
|
3
node_modules/core-js/es/json/to-string-tag.js
generated
vendored
Normal file
3
node_modules/core-js/es/json/to-string-tag.js
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
require('../../modules/es.json.to-string-tag');
|
||||
|
||||
module.exports = 'JSON';
|
Reference in New Issue
Block a user