graph.search(element, iteratee [, opt])
Traverse the graph starting at element
following links. This function is a wrapper around
dfs() or bfs(). By default, it uses dfs()
. If opt.breadthFirst
is set to true
, bfs()
will be used instead.