LendAndRegret/node_modules/es-toolkit/dist/compat/function/attempt.mjs
2026-05-02 17:27:43 +08:00

11 lines
179 B
JavaScript

function attempt(func, ...args) {
try {
return func(...args);
}
catch (e) {
return e instanceof Error ? e : new Error(e);
}
}
export { attempt };