Skip to content

Commit

Permalink
lib: replace var with let
Browse files Browse the repository at this point in the history
PR-URL: #30381
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: David Carlier <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
  • Loading branch information
David OLIVIER authored and MylesBorins committed Nov 21, 2019
1 parent 31a63ab commit f15a3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/v8_prof_processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const scriptFiles = [
'internal/deps/v8/tools/SourceMap',
'internal/deps/v8/tools/tickprocessor-driver'
];
var script = '';
let script = '';

scriptFiles.forEach((s) => {
script += internalBinding('natives')[s] + '\n';
Expand Down

0 comments on commit f15a3b0

Please sign in to comment.