tranz
Version:
The framework for transform anything
16 lines • 453 B
JavaScript
;
/**
* @file json-parse
* @author Cuttle Cong
* @date 2018/9/29
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
function stringify(_a) {
var _b = _a === void 0 ? {} : _a, _c = _b.replacer, replacer = _c === void 0 ? null : _c, space = _b.space;
return function (input) {
return JSON.stringify(input, replacer, space);
};
}
exports.default = stringify;
//# sourceMappingURL=_json-stringify.js.map