(input: any)
| 324 | } |
| 325 | |
| 326 | export function isNumber(input: any): input is number { |
| 327 | return typeof input === "number"; |
| 328 | } |
| 329 | |
| 330 | export function isBoolean(input: any): input is boolean { |
| 331 | return typeof input === "boolean"; |
no outgoing calls
no test coverage detected