Skip to content

Commit

Permalink
remove bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Jan 10, 2020
1 parent 994fa62 commit 7aa4dba
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -32,8 +32,7 @@ function isInDoStatement(node) {
if (
node.type === "IfStatement" &&
node.parent &&
node.parent.type === "IfStatement" &&
node.parent.alternate === node
node.parent.type === "IfStatement"
) {
return isInDoStatement(node.parent);
}
Expand Down

0 comments on commit 7aa4dba

Please sign in to comment.