(x: any)
| 24 | } |
| 25 | |
| 26 | function isNonEmptyArrayOfNonEmptyStrings(x: any): x is any[] { |
| 27 | return Array.isArray(x) && x.length > 0 && x.every((s) => isNonEmptyString(s)); |
| 28 | } |
| 29 | |
| 30 | function isRegExpMatch(regexp: RegExp) { |
| 31 | return (x: any): x is string => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…