mic-bot/utils/convert.ts

9 lines
279 B
TypeScript
Raw Normal View History

2024-10-19 10:00:35 +00:00
export const strToBool = (str: string): boolean | undefined => {
str = str.toLowerCase()
if (str == "y" || str == "yes" || str == "true") {
return true
} else if (str == "n" || str == "no" || str == "false") {
return false
}
return undefined
}