You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
345 B
16 lines
345 B
'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;
|
|
});
|
|
});
|
|
};
|
|
|