it-tools/dist/server/chunks/chunk-5697d061.js
2024-04-28 00:48:29 +08:00

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 };