Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit b1dc249

Browse files
author
Prashant Pawar
committed
Fixed eslint error
1 parent 0882fe2 commit b1dc249

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/compile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3680,7 +3680,7 @@ function removeComments(jqNodes) {
36803680
while (i--) {
36813681
var node = jqNodes[i];
36823682
if (node.nodeType === NODE_TYPE_COMMENT ||
3683-
(node.nodeType === NODE_TYPE_TEXT && node.nodeValue.trim() === '' )) {
3683+
(node.nodeType === NODE_TYPE_TEXT && node.nodeValue.trim() === '')) {
36843684
splice.call(jqNodes, i, 1);
36853685
}
36863686
}

0 commit comments

Comments
 (0)