(x: string[])
| 5 | export type CharacterDiff = [OpType | 'skip' | null, number, number]; |
| 6 | |
| 7 | function strArrayLen(x: string[]) { |
| 8 | return x.reduce((a, b) => a + b.length, 0); |
| 9 | } |
| 10 | |
| 11 | function allWhitespace(x: string) { |
| 12 | return !!/^\s*$/.exec(x); |
no outgoing calls
no test coverage detected