You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
307 B

4 years ago
require('../../modules/es.json.stringify');
var core = require('../../internals/path');
if (!core.JSON) core.JSON = { stringify: JSON.stringify };
// eslint-disable-next-line no-unused-vars
module.exports = function stringify(it, replacer, space) {
return core.JSON.stringify.apply(null, arguments);
};