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
Next Next commit
net: Remove unnecessary eslint-disable comment
  • Loading branch information
Guilherme Goncalves committed Nov 14, 2019
commit 45835ad86de88b34f1948fe780faa3a8e9dadf42
2 changes: 1 addition & 1 deletion lib/net.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ defineProperty(Socket.prototype, 'readyState', {


defineProperty(Socket.prototype, 'bufferSize', {
get: function() { // eslint-disable-line getter-return
get: function() {
Comment thread
lundibundi marked this conversation as resolved.
if (this._handle) {
return this[kLastWriteQueueSize] + this.writableLength;
}
Expand Down