(value: any)
| 14 | |
| 15 | /** Coerces a data-bound value (typically a string) to a boolean. */ |
| 16 | export function coerceBooleanProperty(value: any): boolean { |
| 17 | return value != null && `${value}` !== 'false'; |
| 18 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…