Skip to content

Commit a2629d6

Browse files
committed
Avoid eqeq warning
1 parent b4457e0 commit a2629d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/no-ready.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function isDirect(node) {
77
return node.callee.type === 'Identifier' &&
88
node.callee.name === '$' &&
99
node.arguments[0] &&
10-
node.arguments[0].type == 'FunctionExpression'
10+
node.arguments[0].type === 'FunctionExpression'
1111
}
1212

1313
// $(document).ready()

0 commit comments

Comments
 (0)