alejandro.alvarez5 70bb213259 articulo | 3 anni fa | |
---|---|---|
.. | ||
index.js | 3 anni fa | |
license | 3 anni fa | |
package.json | 3 anni fa | |
readme.md | 3 anni fa |
Promise#finally()
ponyfill - Invoked when the promise is settled regardless of outcome
Useful for cleanup.
$ npm install --save p-finally
const pFinally = require('p-finally');
const dir = createTempDir();
pFinally(write(dir), () => cleanup(dir));
Returns a Promise
.
Type: Function
Note: Throwing or returning a rejected promise will reject promise
with the rejection reason.
MIT © Sindre Sorhus