(input: any)
| 320 | } |
| 321 | |
| 322 | export function isString(input: any): input is string { |
| 323 | return typeof input === "string"; |
| 324 | } |
| 325 | |
| 326 | export function isNumber(input: any): input is number { |
| 327 | return typeof input === "number"; |
no outgoing calls
no test coverage detected