Comparing version 0.1.2 to 0.1.3
@@ -44,3 +44,3 @@ var async = require('async'); | ||
var p = foundGoal.node, path = []; | ||
while (visited[p].from) { | ||
while (visited[p].from != null) { | ||
path.push(p); | ||
@@ -47,0 +47,0 @@ p = visited[p].from; |
{ | ||
"name": "async-bfs", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Flexible functional async breadth first search", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4740