mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-28 19:50:34 +00:00
12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
// src/utils/booleans.tsx
|
|
function isTruthy(value) {
|
|
return !!value;
|
|
}
|
|
function isFalsy(value) {
|
|
return !value;
|
|
}
|
|
export {
|
|
isFalsy,
|
|
isTruthy
|
|
};
|
|
//# sourceMappingURL=booleans.js.map
|