@develephant/jsonp
v1.0.0
Published
A promise based JSON wrapper.
Downloads
4
Readme
jsonp
A promise based JSON wrapper.
Install
npm i @develephant/jsonp --save
Usage
const jsonp = require('@develephant/jsonp')
Example
async
async function doJSONStuff() {
let json_str = await jsonp.stringify(js_obj)
}
promise
jsonp.parse(json_str)
.then(res => console.log(res))
.catch(err => console.error(err))
Methods
stringify
pretty
(formatted stringify)parse