UNPKG

@davidcal/fec-raptorq

Version:

Node.js wrapper for RaptorQ forward error correction

13 lines (11 loc) 343 B
/** * Tries to run an async function and resolves with an object containing either a value if the function resolved or an error if the function rejected. */ export const simple_try_async = async (func) => { try { return { value: await func() }; } catch (e) { return { error: e }; } }; export const simpleTryAsync = simple_try_async;