An open API service indexing awesome lists of open source software.

https://github.com/coderaiser/jonny

Work with json with no exceptions
https://github.com/coderaiser/jonny

javascript json json-api nodejs stringify

Last synced: 11 days ago
JSON representation

Work with json with no exceptions

Awesome Lists containing this project

README

        

# Jonny

Work with json without exeptions.

## Install

```
npm i jonny --save
```

## How to use?

```js
const jonny = require('jonny');

jonny.parse('hello');
// returns
undefined

const obj = {};
obj.a = obj;

jonny.stringify(obj, 0, 4));
// returns
undefined
```

## License

MIT