1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-01 20:13:38 +00:00
This commit is contained in:
MatteZ02
2019-10-10 16:43:04 +03:00
parent 6f6ac8a6fa
commit 50b9bed483
9432 changed files with 1988816 additions and 167 deletions

4
node_modules/core-js/es/json/index.js generated vendored Normal file
View 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
View 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
View File

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