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