0.2.0 - Mid migration

This commit is contained in:
Daniel Mason 2022-04-25 14:47:15 +12:00
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
View 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
View 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
View file

@ -0,0 +1,3 @@
require('../../modules/es.json.to-string-tag');
module.exports = 'JSON';