(paths, index)
| 1 | 'use strict'; |
| 2 | |
| 3 | function allPkgInfosEqualAtIndex(paths, index) { |
| 4 | const itemToCheck = paths[0][index]; |
| 5 | return paths.every((pathToLazyEngine) => pathToLazyEngine[index] === itemToCheck); |
| 6 | } |
| 7 | |
| 8 | class HostInfoCache { |
| 9 | constructor(project) { |
no outgoing calls
no test coverage detected
searching dependent graphs…