Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

17 lines
345 B
JavaScript

'use strict';
var Promise = require('./core.js');
module.exports = Promise;
Promise.prototype.finally = function (f) {
return this.then(function (value) {
return Promise.resolve(f()).then(function () {
return value;
});
}, function (err) {
return Promise.resolve(f()).then(function () {
throw err;
});
});
};