Skip to content

Commit 3dbdfb8

Browse files
🩹 fix(Lazy): Define Lazy#prepend.
1 parent 239ad11 commit 3dbdfb8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/4-lazy/Lazy.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ Lazy.prototype.split = function (p) {
4848
return this._force().split(p);
4949
};
5050

51+
Lazy.prototype.prepend = function (iterable) {
52+
return this._force().prepend(iterable);
53+
};
54+
5155
Lazy.prototype.append = function (iterable) {
5256
return this._force().append(iterable);
5357
};

0 commit comments

Comments
 (0)