UNPKG

fuck-around-and-find-out

Version:

Instead of trying and catching, go ahead and fuck around if you wanna find out.

12 lines (11 loc) 178 B
"use strict"; function fuckAround(action, errorAction) { try { action(); } catch (error) { errorAction(error); } } ; module.exports = fuckAround;