(set)
| 86 | * @returns {ReadonlyMap<Module | undefined, ReadonlyArray<ModuleGraphConnection>>} mapped by module |
| 87 | */ |
| 88 | const getConnectionsByModule = (set) => |
| 89 | getConnectionsByKey(set, (connection) => connection.module); |
| 90 | |
| 91 | /** @typedef {SortableSet<ModuleGraphConnection>} IncomingConnections */ |
| 92 | /** @typedef {SortableSet<ModuleGraphConnection>} OutgoingConnections */ |
nothing calls this directly
no test coverage detected