TransFlow/node_modules/p-try
何嘉峣 d0b8157bbe 代码提交 2022-12-15 10:56:04 +08:00
..
index.js 代码提交 2022-12-15 10:56:04 +08:00
license 代码提交 2022-12-15 10:56:04 +08:00
package.json 代码提交 2022-12-15 10:56:04 +08:00
readme.md 代码提交 2022-12-15 10:56:04 +08:00

readme.md

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