|
|
||||
|---|---|---|---|---|
| .. | ||||
| index.js | 11e3a9652a | преди 7 години | ||
| license | 11e3a9652a | преди 7 години | ||
| package.json | 11e3a9652a | преди 7 години | ||
| readme.md | 11e3a9652a | преди 7 години | ||
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