Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
lib: change arrow function with argv back to function
  • Loading branch information
Naturalclar committed Nov 26, 2018
commit aa572e5e7dfe4c05ae13f5c677e8f244ea451293
2 changes: 1 addition & 1 deletion lib/internal/bootstrap/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@
code += d;
});

process.stdin.on('end', () => {
process.stdin.on('end', function() {
if (process._syntax_check_only != null) {
checkScriptSyntax(code, '[stdin]');
} else {
Expand Down