(x: any)
| 16 | } |
| 17 | |
| 18 | function isString(x: any): x is string { |
| 19 | return typeof x === 'string'; |
| 20 | } |
| 21 | |
| 22 | function isNonEmptyString(x: any): x is string { |
| 23 | return x && isString(x); |
no outgoing calls
no test coverage detected
searching dependent graphs…