|
1 jaar geleden | |
---|---|---|
.. | ||
index.js | 1 jaar geleden | |
license | 1 jaar geleden | |
package.json | 1 jaar geleden | |
readme.md | 1 jaar geleden |
Promise#finally()
ponyfill - Invoked when the promise is settled regardless of outcome
Useful for cleanup.
$ npm install p-finally
const pFinally = require('p-finally');
const directory = createTempDirectory();
(async () => {
await pFinally(write(directory), () => {
cleanup(directory);
});
});
Returns a Promise
.
Type: Function
Note: Throwing or returning a rejected promise will reject promise
with the rejection reason.