Skip to content

Commit 995ddb2

Browse files
committed
[Cleanup] elses need cuddles
1 parent c7859a2 commit 995ddb2

File tree

3 files changed

+8
-16
lines changed

3 files changed

+8
-16
lines changed

lib/default_stream.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ module.exports = function () {
2121
if (fs.writeSync && /^win/.test(process.platform)) {
2222
try { fs.writeSync(1, line + '\n'); }
2323
catch (e) { stream.emit('error', e) }
24-
}
25-
else {
24+
} else {
2625
try { console.log(line) }
2726
catch (e) { stream.emit('error', e) }
2827
}

lib/results.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ Results.prototype.createStream = function (opts) {
5959
});
6060
});
6161
self.on('done', function () { output.queue(null) });
62-
}
63-
else {
62+
} else {
6463
output = resumer();
6564
output.queue('TAP version 13\n');
6665
self._stream.pipe(output);
@@ -149,8 +148,7 @@ function encodeResult (res, count) {
149148
if (Math.max(ex.length, ac.length) > 65 || invalidYaml(ex) || invalidYaml(ac)) {
150149
output += inner + 'expected: |-\n' + inner + ' ' + ex + '\n';
151150
output += inner + 'actual: |-\n' + inner + ' ' + ac + '\n';
152-
}
153-
else {
151+
} else {
154152
output += inner + 'expected: ' + ex + '\n';
155153
output += inner + 'actual: ' + ac + '\n';
156154
}

lib/test.js

+5-10
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,9 @@ var getTestArgs = function (name_, opts_, cb_) {
2929
var t = typeof arg;
3030
if (t === 'string') {
3131
name = arg;
32-
}
33-
else if (t === 'object') {
32+
} else if (t === 'object') {
3433
opts = arg || opts;
35-
}
36-
else if (t === 'function') {
34+
} else if (t === 'function') {
3735
cb = arg;
3836
}
3937
}
@@ -66,7 +64,7 @@ function Test (name_, opts_, cb_) {
6664
return val.apply(self, arguments);
6765
};
6866
}
69-
else return val;
67+
return val;
7068
})(this, this[prop]);
7169
}
7270
}
@@ -176,8 +174,7 @@ Test.prototype._exit = function () {
176174
actual : this.assertCount,
177175
exiting : true
178176
});
179-
}
180-
else if (!this.ended) {
177+
} else if (!this.ended) {
181178
this.fail('test exited without ending', {
182179
exiting: true
183180
});
@@ -188,9 +185,7 @@ Test.prototype._pendingAsserts = function () {
188185
if (this._plan === undefined) {
189186
return 1;
190187
}
191-
else {
192-
return this._plan - (this._progeny.length + this.assertCount);
193-
}
188+
return this._plan - (this._progeny.length + this.assertCount);
194189
};
195190

196191
Test.prototype._assert = function assert (ok, opts) {

0 commit comments

Comments
 (0)