Skip to content

formatJson

传入一个 JSON 或者 JSON 的字符串,添加空格和换行进行返回一个格式化的 JSON 字符串

API

Return

参数说明类型
string返回的一个对象Object

Options

参数说明类型默认值
json需要格式化的 JSON 对象object,string
callback错误回调,可选function

Example

js
import { formatJson } from 'ranuts';

const json = {
  name: 'chaxus',
  age: 3,
};

const result = formatJson(json);

console.log(result);

Released under the MIT License.