1
0
tl-vikunja/frontend/src/helpers/time/parseBooleanProp.ts
2024-02-07 14:56:56 +01:00

5 lines
161 B
TypeScript

export function parseBooleanProp(booleanProp: string | undefined) {
return (booleanProp === 'false' || booleanProp === '0')
? false
: Boolean(booleanProp)
}