github-pages-deploy-action/node_modules/p-try
2020-03-31 08:40:00 -04:00
..
index.js Release 2020-03-21 17:13:25 -04:00
license Release 2020-03-21 17:13:25 -04:00
package.json 3.4.3 2020-03-31 08:40:00 -04:00
readme.md Release 2020-03-21 17:13:25 -04:00

p-try Build Status

Promise#try() ponyfill - Starts a promise chain

How is it useful?

Install

$ npm install --save p-try

Usage

const pTry = require('p-try');

pTry(() => {
	return synchronousFunctionThatMightThrow();
}).then(value => {
	console.log(value);
}).catch(error => {
	console.error(error);
});
  • p-finally - Promise#finally() ponyfill - Invoked when the promise is settled regardless of outcome
  • More…

License

MIT © Sindre Sorhus