1
0
mirror of https://github.com/musix-org/musix-oss synced 2026-05-26 02:45:22 +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
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
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
View File
@@ -0,0 +1,3 @@
require('../../modules/es.json.to-string-tag');
module.exports = 'JSON';