From 36337818d96989ddaa45f37b45d1eb10651d0f56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dario=20Vladovi=C4=87?= Date: Sat, 1 Aug 2020 16:08:23 +0200 Subject: [PATCH] bluebird: `Promise.prototype.finally` is standard Promise API method (#1509) --- bluebird.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluebird.md b/bluebird.md index e6e7b4679..f72e95250 100644 --- a/bluebird.md +++ b/bluebird.md @@ -18,7 +18,7 @@ promise .spread(okFn, errFn) // * .catch(errFn) .catch(TypeError, errFn) // * - .finally(fn) // * + .finally(fn) .map(function (e) { ··· }) // * .each(function (e) { ··· }) // * ```