Echo JS 0.11.0

<~>
xab 2746 days ago. link parent 1 point
Cancellable promises would be nice, to be exact. It's not the timeout that hurts for me, but the fetch.

Replies

MaxArt 2745 days ago. link 1 point
Indeed, it's one of the main arguments about the future development of JS promises.

Also, `setTimeout` should be updated to become a promise (alas, won't happen because `setInterval` can't be promisified too).
xat 2745 days ago. link 3 points
Maybe Promises are just the wrong tool for this kind of stuff in general. 

Interestingly it would be no problem solving these problems with Observables. Cancelation can be done with `dispose` and  setInterval would also be trivial to implement.