UNPKG

stringify-json-object

Version:
10 lines (9 loc) 235 B
export default function stringify(json, pretty = true) { if (json === undefined) { return ""; } else if (pretty) { return JSON.stringify(json, null, 2); } else { return JSON.stringify(json); } }