comic_test / src /lib /getValidBoolean.ts
BBo09's picture
Upload 255 files
c511b81 verified
export const getValidBoolean = (something: any, defaultValue: boolean) => {
if (typeof something === "boolean") {
return something
}
const strValue = `${something || defaultValue}`.toLowerCase()
return strValue === "true" || strValue === "1" || strValue === "on"
}