json-try-parse

try to parse json or return undefined


Keywords
try, parse, json, JSON.parse
License
MIT
Install
npm install json-try-parse@1.0.0

Documentation

json-try-parse

Try to parse json, or return undefined. I just wrote this too many times so it had to become a module

Install

npm install json-try-parse --save

Example

var tryParse = require('json-try-parse');

var obj = tryParse('{ "hello": "there" }');

console.log(obj.hello);
// "there"