Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
nuintun committed May 26, 2015
1 parent 1a89294 commit 60bd364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function traverse(object, visitor){
if (object.hasOwnProperty(key)) {
child = object[key];

if (child !== null && is.object(child)) {
if (child !== null && util.object(child)) {
traverse(child, visitor);
}
}
Expand Down

0 comments on commit 60bd364

Please sign in to comment.