Victor Vu
Victor Vu
As a library, I don't think we would have an opinion one way or the other. However, personally, I think this is more readable alternative. ```javascript _([1, 2, 3]) .asyncMap(async...
Have you seen the discussion in the original PR? https://github.com/caolan/highland/pull/628#issuecomment-306671817 Basically, I was uncomfortable with writing code that implicitly depends on a JS feature that doesn't exist in all execution...
IE11 is still a thing, unfortunately :(. On Wed, May 23, 2018 at 3:14 AM, Alexandre wrote: > Hi @vqvu , sorry for the late reply. > > I understand...
I would also add `fold(2)` and swap the arguments if we do this. It'll make the integration with Ramda easier, since we'd only need a name mapping and not argument...
There is no `unpipe` method. You should transform the Highland stream into a node stream (by piping to `PassThrough` if you want to use node stream features that Highland doesn't...
Ref #176.
I haven't had time to do any work on Highland for the last few weeks... @LewisJEllis I'm happy to discuss ideas on how iterative resume/redirect would be done. We also...
@jeromew Why was this issue closed? As for "rebase vs merge", I suppose it doesn't really matter too much if we don't expect non-collaborators to contribute. Only issue is that...
`throttle`, `debounce`, and `latest` were rewritten to purely use `pull`/`consume` because they depended on private methods and did weird things like override `write` and `pause`. There's also a few uses...
Same thing with `pipeline`, I think.