jarse

Parse json without the errors

Usage no npm install needed!

<script type="module">
  import jarse from 'https://cdn.skypack.dev/jarse';
</script>

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