aboutsummaryrefslogtreecommitdiff
path: root/lib/_stream_writable.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-10-15 15:02:43 -0700
committerRich Trott <rtrott@gmail.com>2016-10-19 22:20:27 -0700
commit68ba9aa0fb6693a1fb5dd114a3ddbe447517c0dd (patch)
tree9aa5e49fe6db669b58078dbbfcb2231b93e3b93d /lib/_stream_writable.js
parent4b65a65e75f48ff447cabd5500ce115fb5ad4c57 (diff)
downloadandroid-node-v8-68ba9aa0fb6693a1fb5dd114a3ddbe447517c0dd.tar.gz
android-node-v8-68ba9aa0fb6693a1fb5dd114a3ddbe447517c0dd.tar.bz2
android-node-v8-68ba9aa0fb6693a1fb5dd114a3ddbe447517c0dd.zip
test,lib,benchmark: match function names
In most cases, named functions match the variable or property to which they are being assigned. That also seems to be the practice in a series of PRs currently being evaluated that name currently-anonymous functions. This change applies that rule to instances in the code base that don't comply with that practice. This will be enforceable with a lint rule once we upgrade to ESLint 3.8.0. PR-URL: https://github.com/nodejs/node/pull/9113 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Diffstat (limited to 'lib/_stream_writable.js')
-rw-r--r--lib/_stream_writable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/_stream_writable.js b/lib/_stream_writable.js
index 816810234d..524f6dcdb2 100644
--- a/lib/_stream_writable.js
+++ b/lib/_stream_writable.js
@@ -117,7 +117,7 @@ function WritableState(options, stream) {
this.corkedRequestsFree = new CorkedRequest(this);
}
-WritableState.prototype.getBuffer = function writableStateGetBuffer() {
+WritableState.prototype.getBuffer = function getBuffer() {
var current = this.bufferedRequest;
var out = [];
while (current) {