Linting fix

This commit is contained in:
Jackson Harper 2022-11-21 16:02:56 +08:00 committed by Hongbo Wu
parent 9741f6b12d
commit a3f477f57a

View file

@ -74,7 +74,7 @@ function getTextNodesBetween(rootNode: Node, startNode: Node, endNode: Node) {
}
for (
var i = 0, len = node.childNodes.length;
let i = 0, len = node.childNodes.length;
!reachedEndNode && i < len;
++i
) {