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 be82986 commit 5e60e8bCopy full SHA for 5e60e8b
src/4-lazy/Lazy.js
@@ -48,6 +48,10 @@ Lazy.prototype.split = function (p) {
48
return this._force().split(p);
49
};
50
51
+Lazy.prototype.prepend = function (iterable) {
52
+ return this._force().prepend(iterable);
53
+};
54
+
55
Lazy.prototype.append = function (iterable) {
56
return this._force().append(iterable);
57
0 commit comments