Skip to content

Commit 1d1f548

Browse files
gunnimKtorZ
authored andcommitted
Maybe.sequence missing return
Traversable Maybe missing return in class method sequence
1 parent 044eaad commit 1d1f548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

support/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ class Maybe {
425425

426426
// ----- Traversable Maybe
427427
sequence(of) {
428-
this.traverse(of, identity);
428+
return this.traverse(of, identity);
429429
}
430430

431431
traverse(of, fn) {

0 commit comments

Comments
 (0)