Skip to content

Commit

Permalink
fs: change var to let
Browse files Browse the repository at this point in the history
PR-URL: #30318
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
nadinTs authored and targos committed Dec 1, 2019
1 parent 52604fd commit c01a7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fs.js
Expand Up @@ -1408,7 +1408,7 @@ if (isWindows) {
};
} else {
splitRoot = function splitRoot(str) {
for (var i = 0; i < str.length; ++i) {
for (let i = 0; i < str.length; ++i) {
if (str.charCodeAt(i) !== CHAR_FORWARD_SLASH)
return str.slice(0, i);
}
Expand Down

0 comments on commit c01a7fb

Please sign in to comment.