Skip to content

Commit 2c25584

Browse files
AdriVanHoudtjasnell
authored andcommitted
process: changed var to const in internal/v8_prof_processor
PR-URL: #8619 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ilkka Myller <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 0fbd59e commit 2c25584

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/v8_prof_processor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ scriptFiles.forEach(function(s) {
1818
script += process.binding('natives')[s] + '\n';
1919
});
2020

21-
var tickArguments = [];
21+
const tickArguments = [];
2222
if (process.platform === 'darwin') {
2323
tickArguments.push('--mac');
2424
} else if (process.platform === 'win32') {

0 commit comments

Comments
 (0)