mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-10-27 11:40:05 +01:00
TryCatch
Try-catch wrapper.
Example
const tryCatch = require('tryCatch');
const {parse} = JSON;
const [error, result] = tryCatch(parse, 'hello');
if (error)
console.error(error.message);
License
MIT