vikunja-frontend/src/helpers/time/parseBooleanProp.ts

5 lines
149 B
TypeScript

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