Eric Foster 35b96bc934 initial commit | vor 6 Jahren | |
---|---|---|
.. | ||
index.js | vor 6 Jahren | |
license | vor 6 Jahren | |
package.json | vor 6 Jahren | |
readme.md | vor 6 Jahren |
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