JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q38811F
  • License MIT

Parse json without the errors

Package Exports

  • jarse

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jarse) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jarse

CircleCI codecov NPM version

Parse json without the errors

Install

$ yarn add jarse

Usage

const jParse = require('jarse');
const json = `
    {"data": ["value", {"key": "name", "value": "John Doe"}]}
`;

jParse(json);
//=> { data: [ 'value', { key: 'name', value: 'John Doe' } ] }

Contributing

  1. Fork it (https://github.com/George-Aidonidis/jarse/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

License

MIT © George Aidonidis