prettify-js
Version:
Beautify javascript value to JSON string
17 lines (8 loc) • 307 B
JavaScript
/**
* Sample Example.
*/
var beautify = require('../index');
console.log('------Before Beautification------');
console.log({ hello: 'world', body: 'This is pretty json' } );
console.log('------After Beautification------');
console.log(beautify({ hello: 'world', body: 'This is pretty json' }));