Vinícius Ernani de Carvalho 6c4544a079 Create the backend | 5 سال پیش | |
---|---|---|
.. | ||
index.js | 5 سال پیش | |
license | 5 سال پیش | |
package.json | 5 سال پیش | |
readme.md | 5 سال پیش |
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