Are there any features that you are looking to implement?
tintinthong opened this issue · 3 comments
tintinthong commented
In this quarantine period im looking to work on something since ive got a lot of free time. Been studying haskell and this repo seems pretty cool.
JSMonk commented
@tintinthong. Sorry for the long answer. For now We have not any issue or feature requests. But, you can try to implement other monads in this repository like Future (IO).
Thank you for your contribution ^_^.
JSMonk commented
IO
is pretty real-world example.
It's a Promise on steroids.
Look ahead at IO Monad in JavaScript
.
And you can make it a thenable object, which gives an ability to use IO
with await
operator.