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

26 lines
319 B
Markdown

# Jonny
Work with json without exeptions.
## Install
```
npm i jonny --save
```
## How to use?
```js
var jonny = require('jonny'),
obj = jonny.parse('{ "hello": "world" }');
console.log(jonny.stringify(obj, 0, 4));
// results
// "{
// "hello": "world"
// }"
```
## License
MIT