(value: any)
| 147 | } |
| 148 | |
| 149 | export function isUndefined(value: any): boolean { |
| 150 | return value === undefined; |
| 151 | } |
| 152 | |
| 153 | export function isNumber(value: any): boolean { |
| 154 | return typeof value === "number" && !isNaN(value); |
nothing calls this directly
no outgoing calls
no test coverage detected