将json文件格式化
npm install json-beautifully
``javascript import formatJson from 'json-beautifully';
javascript import formatJson from 'json-beautifully';
let json = {a:1,b:2};
let text = formatJson(json);
console.log(text)
``