Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/promise/setimmediate/finally.js
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

17 lines
348 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;
});
});
};