Skip to content

Commit 07f66bd

Browse files
committed
style: after lint
1 parent 5021653 commit 07f66bd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/api.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@ function walk (cb) {
8181
function match (expression, cb) {
8282
return Array.isArray(expression)
8383
? traverse(this, node => {
84-
for (let i = 0; i < expression.length; i++) {
85-
if (compare(expression[i], node)) return cb(node)
86-
}
84+
for (let i = 0; i < expression.length; i++) {
85+
if (compare(expression[i], node)) return cb(node)
86+
}
8787

88-
return node
89-
})
88+
return node
89+
})
9090
: traverse(this, node => {
9191
if (compare(expression, node)) return cb(node)
9292

0 commit comments

Comments
 (0)