This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/helpers/time/parseBooleanProp.ts

5 lines
161 B
TypeScript
Raw Permalink Normal View History

2022-10-24 13:40:39 +00:00
export function parseBooleanProp(booleanProp: string | undefined) {
return (booleanProp === 'false' || booleanProp === '0')
? false
2022-10-24 13:40:39 +00:00
: Boolean(booleanProp)
}