2019-12-04 20:38:33 +05:30
|
|
|
require('../../modules/es.json.stringify');
|
2019-09-25 13:30:05 +05:30
|
|
|
var core = require('../../internals/path');
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
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);
|
2019-09-25 13:30:05 +05:30
|
|
|
};
|