Skip to content

Commit

Permalink
lib: convert to Arrow Function
Browse files Browse the repository at this point in the history
convert to Arrow Function and test by `./tools/test.py tick-processor`
PR-URL: nodejs#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]>
  • Loading branch information
Daiki Arai authored and refack committed Jan 10, 2019
1 parent 90c784e commit 6e25344
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 = [
];
var script = '';

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

Expand Down

0 comments on commit 6e25344

Please sign in to comment.