Files
it-tools/src/utils/boolean.ts
2023-05-02 13:57:39 +02:00

15 lines
271 B
TypeScript

export { isNotThrowing, booleanToHumanReadable };
function isNotThrowing(cb: () => unknown): boolean {
try {
cb();
return true;
} catch (_) {
return false;
}
}
function booleanToHumanReadable(value: boolean): string {
return value ? 'Yes' : 'No';
}