UNPKG

155 BJavaScriptView Raw
1/**
2 * 将 obj 转成含缩进格式的输出字串
3 */
4const jsonStringify = obj => JSON.stringify(obj, null, 2);
5
6module.exports = {
7 jsonStringify,
8};