mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
function isStringBoolean(value: string): boolean {
|
|
const lowerValue = value.toLowerCase()
|
|
if (lowerValue === 'true' || lowerValue === 'false') {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
export { isStringBoolean }
|