UNPKG

json-try-parse

Version:

try to parse json or return undefined

12 lines (8 loc) 145 B
'use strict'; module.exports = function tryParse(data) { var json; try { json = JSON.parse(data); } catch (ex) {} return json; };