(a, b)
| 255 | * @returns {boolean} true if at least one item of a is in b |
| 256 | */ |
| 257 | const isOverlap = (a, b) => { |
| 258 | for (const item of a) { |
| 259 | if (b.has(item)) return true; |
| 260 | } |
| 261 | return false; |
| 262 | }; |
| 263 | |
| 264 | const compareModuleIterables = compareIterables(compareModulesByIdentifier); |
| 265 |