mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
10 lines
307 B
JavaScript
10 lines
307 B
JavaScript
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);
|
|
};
|