caoge c760052ff9 机车状态修改 | před 8 měsíci | |
---|---|---|
.. | ||
index.js | před 8 měsíci | |
license | před 8 měsíci | |
package.json | před 8 měsíci | |
readme.md | před 8 měsíci |
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