diff options
| author | HumairAK <humair88@hotmail.com> | 2016-07-25 05:57:23 +0000 |
|---|---|---|
| committer | HumairAK <humair88@hotmail.com> | 2016-07-25 05:57:23 +0000 |
| commit | c27a1b924a8e07079e7dc8c61923a765df46c9e9 (patch) | |
| tree | bcc2fb017ed8f5f1c8290725009999a16abfbae5 /node_modules/promise/lib/finally.js | |
| parent | 1904de750f421cce9bec21ab89c50ea7a38a37d4 (diff) | |
| parent | 6d8857b2a3774db605f10631e327f152f241834b (diff) | |
Merge branch 'master' of https://github.com/HumairAK/solutions_repo
Diffstat (limited to 'node_modules/promise/lib/finally.js')
| -rw-r--r-- | node_modules/promise/lib/finally.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/node_modules/promise/lib/finally.js b/node_modules/promise/lib/finally.js new file mode 100644 index 0000000..f5ee0b9 --- /dev/null +++ b/node_modules/promise/lib/finally.js @@ -0,0 +1,16 @@ +'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; + }); + }); +}; |
