UNPKG

fliphub-monorepo

Version:
13 lines (11 loc) 186 B
module.exports = function tryCatch({cb, when, catchCb}) { if (when) { try { const result = cb() return cb } catch (e) { catchCb(e) } } return cb() }