Functional try-catch wrapper
try-catch
npm i try-catch
const tryCatch = require('try-catch'); const {parse} = JSON; const [error, result] = tryCatch(parse, 'hello'); if (error) console.error(error.message);
MIT