1.0.0 • Published 7 years ago

@develephant/jsonp v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

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


jsonp © 2017 develephant MIT license