Skip to content

Commit

Permalink
Add JSDoc Comments and update Error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
boopathi committed May 21, 2017
1 parent 9bc2c0a commit a9f26be
Show file tree
Hide file tree
Showing 3 changed files with 262 additions and 53 deletions.
Expand Up @@ -12,7 +12,7 @@ module.exports = function bfsTraverseCreator({ types: t, traverse }) {
const visitor = traverse.explode(_visitor);

const queue = [path];
let current; // current depth
let current;

while (queue.length > 0) {
current = queue.shift();
Expand Down

0 comments on commit a9f26be

Please sign in to comment.