UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

12 lines 201 B
function tryCatch(fn, onException) { try { const result = fn(); return result; } catch (error) { onException?.(error); } } export { tryCatch }; //# sourceMappingURL=tryCatch.mjs.map