Viewing profile — mad-mad-beaver
mad-mad-beaver
HN member- Joined
- Mon, Dec 28, 2015, 9:25 PM UTC
- HN karma
- 4
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About mad-mad-beaver
No profile information was provided.
Recent public activity
-
comment
Comment #10805614
Oh, yeah, it replaces that cumbersome .then(() => doSome(thing)) with bare doSome(thing) and .catch(err => doOtherThing(err)) with catch (err) {doOtherThing(err)} A breakthrough in…
-
comment
Comment #10803828
Just use promesa/all then catch :) Moreover, it has funcool/cats bindings, so you can use promises in mlet and alet macros if you are into monad thing ;)
-
comment
Comment #10803723
How is "never-ending-chain-of-thens" fundamentally different from async/await? It's still the very same code but with different (and somewhat disconcerting) sugar. I've been using …