aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/es/json/stringify.js
blob: 5bbebc9ae3e899382ac965d50b9a95230957f7c0 (plain)
1
2
3
4
5
6
7
8
9
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);
};