Last updated 3 years ago
Was this helpful?
- 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.
Promise
Type: Function
Function
Note: Throwing or returning a rejected promise will reject promise with the rejection reason.
promise
- Promise#try() ponyfill - Starts a promise chain
Promise#try()
MIT ©
Promise#finally()