mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-06 06:17:11 -04:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
function isNotThrowing(cb) {
|
|
try {
|
|
cb();
|
|
return true;
|
|
} catch (_) {
|
|
return false;
|
|
}
|
|
}
|
|
function booleanToHumanReadable(value) {
|
|
return value ? "Yes" : "No";
|
|
}
|
|
|
|
export { booleanToHumanReadable as b, isNotThrowing as i };
|