(x: T | string)
| 740 | } |
| 741 | |
| 742 | function isString<T>(x: T | string): x is string { |
| 743 | return typeof x === 'string'; |
| 744 | } |
| 745 | |
| 746 | function isBoolean<T>(x: T | boolean): x is boolean { |
| 747 | return typeof x === 'boolean'; |
no outgoing calls
no test coverage detected
searching dependent graphs…