fasy
fasy copied to clipboard
FP iterators that are both eager and asynchronous
Check out the iterators in [itiriri-async](https://github.com/labs42io/itiriri-async#complete-list-of-methods) and see if any of them would be useful to support in Fasy.
Add note about how [itiriri-async](https://github.com/labs42io/itiriri-async) handles **lazy async iteration**.
[Async-generators are stage3](https://github.com/tc39/proposal-async-iteration#async-generator-functions), so fairly likely to land in JS. Seems like **fasy** should support them eventually, probably sooner than later. **[UPDATE]:** They landed in ES2018. For example: ```js FP.serial.map(async...
Like Ramda: https://ramdajs.com/docs/#reduced
Explore some way to combine/bring in [CAF](https://github.com/getify/CAF) (cancelable async functions) capabilities so that fasy's async iterations are optionally cancelable. This might need to be a separate namespace where the API...