( graph: Graph<N, E, T> | MutableGraph<N, E, T> )
| 1582 | * @since 3.18.0 |
| 1583 | */ |
| 1584 | export const nodeCount = <N, E, T extends Kind = "directed">( |
| 1585 | graph: Graph<N, E, T> | MutableGraph<N, E, T> |
| 1586 | ): number => graphImpl(graph).nodes.size |
| 1587 | |
| 1588 | /** |
| 1589 | * Finds the first node that matches the given predicate. |
nothing calls this directly
no test coverage detected