UNPKG

@orca-fe/tools

Version:
10 lines 241 B
export function catcher(callback, defaultValue) { try { var result = callback(); if (result instanceof Promise) { return result.catch(() => defaultValue); } return result; } catch (error) {} return defaultValue; }