Skip to content

Commit 98bcefc

Browse files
committed
Fix empty lines
1 parent bb5bae9 commit 98bcefc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

JavaScript/2-class.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ class Text {
44
constructor(s) {
55
this.value = s;
66
}
7+
78
line(a) {
89
this.value += '\n' + a;
910
return this;
1011
}
12+
1113
toString() {
1214
return this.value;
1315
}

JavaScript/6-promise.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict';
22

33
class ArrayChain {
4-
54
constructor(array) {
65
this._promise = Promise.resolve(array);
76
}
@@ -60,7 +59,6 @@ class ArrayChain {
6059
this._chain(api.metasync.find, fn);
6160
return this;
6261
}
63-
6462
}
6563

6664
module.exports = {

0 commit comments

Comments
 (0)