Skip to content
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.
/ p-finally Public archive

`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome

License

Notifications You must be signed in to change notification settings

sindresorhus/p-finally

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deprecated as it's now available in all modern browsers and Node.js versions.


p-finally

Promise#finally() ponyfill - Invoked when the promise is settled regardless of outcome

Useful for cleanup.

Install

$ npm install p-finally

Usage

import pFinally from 'p-finally';

const directory = createTempDirectory();

await pFinally(write(directory), () => {
	cleanup(directory);
});

API

pFinally(promise, onFinally?)

Returns a Promise.

onFinally

Type: Function

Note: Throwing or returning a rejected promise will reject promise with the rejection reason.

Related

  • p-try - Promise.try() ponyfill - Starts a promise chain
  • More…