main funcions fixes

This commit is contained in:
2025-09-29 22:06:11 +09:00
parent 40e016e128
commit c8c3274527
7995 changed files with 1517998 additions and 1057 deletions

View File

@@ -0,0 +1,20 @@
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 };