UNPKG

return-style

Version:

Non-intrusively convert the result of any function or promise to the user's desired style.

10 lines 168 B
export function getError(fn) { try { fn(); } catch (syncError) { return syncError; } return; } //# sourceMappingURL=get-error.js.map