| 2 | import nullthrows from '../utils/nullthrows'; |
| 3 | |
| 4 | interface Graph<T> { |
| 5 | [key: string]: Array<T>; |
| 6 | } |
| 7 | |
| 8 | /** |
| 9 | * Performs a breadth-first search on a graph given a starting node. |
nothing calls this directly
no outgoing calls
no test coverage detected