mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-03 06:32:19 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
6
web/node_modules/core-js/es/json/index.js
generated
vendored
Normal file
6
web/node_modules/core-js/es/json/index.js
generated
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
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 });
|
10
web/node_modules/core-js/es/json/stringify.js
generated
vendored
Normal file
10
web/node_modules/core-js/es/json/stringify.js
generated
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
require('../../modules/es.json.stringify');
|
||||
var core = require('../../internals/path');
|
||||
|
||||
// eslint-disable-next-line es/no-json -- safe
|
||||
if (!core.JSON) core.JSON = { stringify: JSON.stringify };
|
||||
|
||||
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
||||
module.exports = function stringify(it, replacer, space) {
|
||||
return core.JSON.stringify.apply(null, arguments);
|
||||
};
|
3
web/node_modules/core-js/es/json/to-string-tag.js
generated
vendored
Normal file
3
web/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';
|
Loading…
Add table
Add a link
Reference in a new issue