diff --git a/lib/url.js b/lib/url.js index fc3863f6ef8a4b..a7f8fa2203a4f9 100644 --- a/lib/url.js +++ b/lib/url.js @@ -162,8 +162,7 @@ Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) { let end = -1; let rest = ''; let lastPos = 0; - let i = 0; - for (let inWs = false, split = false; i < url.length; ++i) { + for (let i = 0, inWs = false, split = false; i < url.length; ++i) { const code = url.charCodeAt(i); // Find first and last non-whitespace characters for trimming @@ -295,7 +294,7 @@ Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) { let hostEnd = -1; let atSign = -1; let nonHost = -1; - for (i = 0; i < rest.length; ++i) { + for (let i = 0; i < rest.length; ++i) { switch (rest.charCodeAt(i)) { case CHAR_TAB: case CHAR_LINE_FEED: @@ -411,7 +410,7 @@ Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) { let questionIdx = -1; let hashIdx = -1; - for (i = 0; i < rest.length; ++i) { + for (let i = 0; i < rest.length; ++i) { const code = rest.charCodeAt(i); if (code === CHAR_HASH) { this.hash = rest.slice(i);