-
Notifications
You must be signed in to change notification settings - Fork 30.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stream: name anonymous function in _stream_writable.js #21753
Conversation
Thank you @mariotsi for raising your first PR in Node.js core! 🎉 |
lib/_stream_writable.js
Outdated
@@ -190,7 +190,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance) { | |||
} | |||
}); | |||
} else { | |||
realHasInstance = function(object) { | |||
realHasInstance = function realHasInstance(object) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed, the name is inferred from the variable name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, removed
6022077
to
99f0f13
Compare
99f0f13
to
6e836af
Compare
@BridgeAR just checking the meaning of the "author ready" and I'm wondering what LG stands for |
author-ready label is used for PRs that can land (details) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@maclover7 one task if the CI is running from two days. |
Linter only needs a re-run. I'm unable to restart it right now for some reason. |
node-test-linter re-run https://ci.nodejs.org/job/node-test-linter/20693/ |
Linter CI https://ci.nodejs.org/job/node-test-linter/20702/ ✔️ [edit] I should refresh next time ;-) [/edit] |
I still see node-test-commit running from 3 days |
PR-URL: nodejs#21753 Refs: nodejs#8913 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
PR-URL: #21753 Refs: #8913 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Thanks :) See you on the next PR! |
Refs: #8913
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes