UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

6 lines (5 loc) 177 B
export const prettyOneLine = (value) => { let json = JSON.stringify(value); json = json.replace(/([\{\[\:\,])/g, '$1 ').replace(/([\}\]])/g, ' $1'); return json; };