Add Promise.prototype.finally support #9663
Conversation
Adds `Promise.prototype.finally` support to Meteor's `promise` package. Fixes #9639.
Looking at https://github.com/zloirock/core-js/blob/master/modules/es7.promise.finally.js for comparison, there's some extra logic to allow The However, it strikes me that this is a lot of pedantry/pageantry just to call I'll push a commit in a few minutes if I can figure this out. |
That would be awesome @benjamn! I was following the |
…mise-finally Aid Promise subclassability by avoiding Promise.resolve in #finally.
Does this mean it is only supported on meteor server side? I'm getting this error on MS Edge: Even when using babel, I have to add a a polyfill for this to work everywhere? |
Adds
Promise.prototype.finally
support to Meteor'spromise
package. Let me know if I missed anything. Thanks!Fixes #9639.