Skip to content

Commit

Permalink
passes all its tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed May 29, 2011
1 parent 9ed99f3 commit d0dac52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function walk (root, cb, immutable) {
state.isLeaf = Object.keys(node).length == 0

for (var i = 0; i < parents.length; i++) {
if (parents[i].node === node) {
if (parents[i].node_ === node_) {
state.circular = parents[i];
break;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "traverse",
"version" : "0.3.4",
"version" : "0.3.5",
"description" : "Traverse and transform objects by visiting every node on a recursive walk",
"author" : "James Halliday",
"license" : "MIT/X11",
Expand Down

0 comments on commit d0dac52

Please sign in to comment.