Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c35eacc

Browse files
tniessenMylesBorins
authored andcommittedFeb 21, 2018
url: simplify loop in parser
PR-URL: #18468 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Tiancheng "Timothy" Gu <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 8c39ea3 commit c35eacc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ Url.prototype.resolveObject = function resolveObject(relative) {
883883

884884
// if the path is allowed to go above the root, restore leading ..s
885885
if (!mustEndAbs && !removeAllDots) {
886-
for (; up--; up) {
886+
while (up--) {
887887
srcPath.unshift('..');
888888
}
889889
}

0 commit comments

Comments
 (0)
Please sign in to comment.