M96820
feat: add ai-comic-factory
903fafb
raw
history blame
280 Bytes
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"
}