summaryrefslogtreecommitdiff
path: root/lib/_stream_readable.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-08-14 23:40:18 -0700
committerMyles Borins <mylesborins@google.com>2017-09-05 12:49:50 -0400
commit62de339327d2a388cdcf38e63786b74acf2950e0 (patch)
treec59d3e0fc8963ed712caa08aadf0604a79f0c507 /lib/_stream_readable.js
parenta3cd733deae805650d96f23326de24ad446d1e1b (diff)
downloadnode-new-62de339327d2a388cdcf38e63786b74acf2950e0.tar.gz
tools: remove legacy indentation linting
All linting now uses the current ESLint 4.3.0 indentation linting. Remove legacy indentation rules. Backport-PR-URL: https://github.com/nodejs/node/pull/14835 PR-URL: https://github.com/nodejs/node/pull/14515 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'lib/_stream_readable.js')
-rw-r--r--lib/_stream_readable.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/_stream_readable.js b/lib/_stream_readable.js
index fc6252edf4..541ef1c305 100644
--- a/lib/_stream_readable.js
+++ b/lib/_stream_readable.js
@@ -877,8 +877,8 @@ function fromListPartial(n, list, hasStrings) {
} else {
// result spans more than one buffer
ret = (hasStrings
- ? copyFromBufferString(n, list)
- : copyFromBuffer(n, list));
+ ? copyFromBufferString(n, list)
+ : copyFromBuffer(n, list));
}
return ret;
}