frontend/src/helpers/time/parseBooleanProp.ts

5 lines
161 B
TypeScript

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