bluebird: `Promise.prototype.finally` is standard Promise API method (#1509)
This commit is contained in:
parent
6a1378f310
commit
36337818d9
|
@ -18,7 +18,7 @@ promise
|
||||||
.spread(okFn, errFn) // *
|
.spread(okFn, errFn) // *
|
||||||
.catch(errFn)
|
.catch(errFn)
|
||||||
.catch(TypeError, errFn) // *
|
.catch(TypeError, errFn) // *
|
||||||
.finally(fn) // *
|
.finally(fn)
|
||||||
.map(function (e) { ··· }) // *
|
.map(function (e) { ··· }) // *
|
||||||
.each(function (e) { ··· }) // *
|
.each(function (e) { ··· }) // *
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue