(o: any)
| 137 | } |
| 138 | |
| 139 | export function isNullOrUndef (o: any): o is undefined | null { |
| 140 | return o === undefined || o === null |
| 141 | } |
| 142 | |
| 143 | export function isInvalid (o: any): o is undefined | null | true | false { |
| 144 | return isNullOrUndef(o) || o === true || o === false |
no outgoing calls
no test coverage detected