Files
it-tools/src/utils/boolean.ts

11 lines
155 B
TypeScript

export { isNotThrowing };
function isNotThrowing(cb: () => unknown): boolean {
try {
cb();
return true;
} catch (_) {
return false;
}
}