We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb5bae9 commit 98bcefcCopy full SHA for 98bcefc
JavaScript/2-class.js
@@ -4,10 +4,12 @@ class Text {
4
constructor(s) {
5
this.value = s;
6
}
7
+
8
line(a) {
9
this.value += '\n' + a;
10
return this;
11
12
13
toString() {
14
return this.value;
15
JavaScript/6-promise.js
@@ -1,7 +1,6 @@
1
'use strict';
2
3
class ArrayChain {
-
constructor(array) {
this._promise = Promise.resolve(array);
@@ -60,7 +59,6 @@ class ArrayChain {
60
59
this._chain(api.metasync.find, fn);
61
62
63
64
65
66
module.exports = {
0 commit comments