webfool

Results 1 comments of webfool

```js Promise.prototype.finally = function (callback) { let P = this.constructor; return this.then( value => P.resolve(callback()).then(() => value, () => value), reason => P.resolve(callback()).then(() => { throw reason }, () =>...