Skip to content

Commit e5c85ef

Browse files
Daiki Araitargos
Daiki Arai
authored andcommitted
lib: convert to Arrow Function
convert to Arrow Function and test by `./tools/test.py tick-processor` PR-URL: #24615 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Masashi Hirano <shisama07@gmail.com>
1 parent 8072a2b commit e5c85ef

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 @@ const scriptFiles = [
1818
];
1919
var script = '';
2020

21-
scriptFiles.forEach(function(s) {
21+
scriptFiles.forEach((s) => {
2222
script += internalBinding('natives')[s] + '\n';
2323
});
2424

0 commit comments

Comments
 (0)