summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-12-21 16:51:43 +0000
committerisaacs <i@izs.me>2012-12-21 16:51:43 +0000
commitfb915ed9573d21c5b62c13b8eaa9642a6dbb4b02 (patch)
treec1dfdb554ef33ade7bb303ef9edd05a8d524a86e
parentc048c814c79a8706f177573c76bfcba3cda0b633 (diff)
downloadnode-fb915ed9573d21c5b62c13b8eaa9642a6dbb4b02.tar.gz
lint
-rw-r--r--lib/fs.js3
-rw-r--r--lib/http.js14
2 files changed, 9 insertions, 8 deletions
diff --git a/lib/fs.js b/lib/fs.js
index 44c3fc2e7..c8e44e1d7 100644
--- a/lib/fs.js
+++ b/lib/fs.js
@@ -1412,7 +1412,8 @@ function ReadStream(path, options) {
this.start = options.hasOwnProperty('start') ? options.start : undefined;
this.end = options.hasOwnProperty('start') ? options.end : undefined;
- this.autoClose = options.hasOwnProperty('autoClose') ? options.autoClose : true;
+ this.autoClose = options.hasOwnProperty('autoClose') ?
+ options.autoClose : true;
this.pos = undefined;
if (this.start !== undefined) {
diff --git a/lib/http.js b/lib/http.js
index 81c5f67dd..43c61b5e4 100644
--- a/lib/http.js
+++ b/lib/http.js
@@ -800,13 +800,13 @@ OutgoingMessage.prototype.end = function(data, encoding) {
var data_len = data.length;
var trailer_len = this._trailer.length;
- var len = header_len
- + chunk_size_len
- + 2 // '\r\n'.length
- + data_len
- + 5 // '\r\n0\r\n'.length
- + trailer_len
- + 2; // '\r\n'.length
+ var len = header_len +
+ chunk_size_len +
+ 2 + // '\r\n'.length
+ data_len +
+ 5 + // '\r\n0\r\n'.length
+ trailer_len +
+ 2; // '\r\n'.length
var buf = new Buffer(len);
var off = 0;