Skip to content

Commit e5abfe1

Browse files
Daiki AraiBethGriggs
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 <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Masashi Hirano <[email protected]>
1 parent 43bfb13 commit e5abfe1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/internal/v8_prof_processor.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ const scriptFiles = [
1818
];
1919
var script = '';
2020

21-
scriptFiles.forEach(function(s) {
21+
22+
scriptFiles.forEach((s) => {
2223
script += process.binding('natives')[s] + '\n';
2324
});
2425

0 commit comments

Comments
 (0)