mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-10-23 04:52:14 +00:00
11 lines
155 B
TypeScript
11 lines
155 B
TypeScript
export { isNotThrowing };
|
|
|
|
function isNotThrowing(cb: () => unknown): boolean {
|
|
try {
|
|
cb();
|
|
return true;
|
|
} catch (_) {
|
|
return false;
|
|
}
|
|
}
|