bluebird: `Promise.prototype.finally` is standard Promise API method (#1509)

This commit is contained in:
Dario Vladović 2020-08-01 16:08:23 +02:00 committed by GitHub
parent 6a1378f310
commit 36337818d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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) { ··· }) // *
``` ```