(x: T | number)
| 736 | } |
| 737 | |
| 738 | function isNumber<T>(x: T | number): x is number { |
| 739 | return typeof x === 'number'; |
| 740 | } |
| 741 | |
| 742 | function isString<T>(x: T | string): x is string { |
| 743 | return typeof x === 'string'; |
no outgoing calls
no test coverage detected
searching dependent graphs…