cloudcmd/modules/jonny/README.md
2016-07-28 13:06:03 +03:00

319 B

Jonny

Work with json without exeptions.

Install

npm i jonny --save

How to use?

var jonny   = require('jonny'),
    obj     = jonny.parse('{ "hello": "world" }');
    
    console.log(jonny.stringify(obj, 0, 4));
    // results
    // "{
    // "hello": "world"
    // }"

License

MIT