(...arrays)
| 129 | } |
| 130 | |
| 131 | function zipArrays(...arrays) { |
| 132 | const arr = []; |
| 133 | for (let i = 0; i <= arrays[0].length - 1; i++) { |
| 134 | arr.push(arrays.map(a => a[i])); |
| 135 | } |
| 136 | return arr; |
| 137 | } |
| 138 | |
| 139 | function cleanPath(filepath) { |
| 140 | return filepath.split(path.sep).join('/'); |
no test coverage detected
searching dependent graphs…