Files
ObsidianPad/node_modules/boolean/lib/isBooleanable.ts
T
dinlo 436a9631fc Initial commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-31 18:44:04 +08:00

21 lines
478 B
TypeScript

const isBooleanable = function (value: any): boolean {
switch (Object.prototype.toString.call(value)) {
case '[object String]':
return [
'true', 't', 'yes', 'y', 'on', '1',
'false', 'f', 'no', 'n', 'off', '0'
].includes(value.trim().toLowerCase());
case '[object Number]':
return [ 0, 1 ].includes(value.valueOf());
case '[object Boolean]':
return true;
default:
return false;
}
};
export { isBooleanable };