jarse

1.1.1 • Public • Published

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

/jarse/

    Package Sidebar

    Install

    npm i jarse

    Weekly Downloads

    0

    Version

    1.1.1

    License

    MIT

    Unpacked Size

    3.41 kB

    Total Files

    5

    Last publish

    Collaborators

    • george.aidonidis