mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 22:33:17 +00:00
7 lines
248 B
JavaScript
7 lines
248 B
JavaScript
|
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);
|
||
|
};
|