(x: any)
| 20 | } |
| 21 | |
| 22 | function isNonEmptyString(x: any): x is string { |
| 23 | return x && isString(x); |
| 24 | } |
| 25 | |
| 26 | function isNonEmptyArrayOfNonEmptyStrings(x: any): x is any[] { |
| 27 | return Array.isArray(x) && x.length > 0 && x.every((s) => isNonEmptyString(s)); |
no test coverage detected
searching dependent graphs…