Sha256: 2389e9cb72fae2955b9c76b1f45c9a626c23dd506a44a474796fc5212c16607b

Contents?: true

Size: 1.3 KB

Versions: 87

Compression:

Stored size: 1.3 KB

Contents

# p-try [![Build Status](https://travis-ci.org/sindresorhus/p-try.svg?branch=master)](https://travis-ci.org/sindresorhus/p-try)

> Start a promise chain

[How is it useful?](http://cryto.net/~joepie91/blog/2016/05/11/what-is-promise-try-and-why-does-it-matter/)


## Install

```
$ npm install p-try
```


## Usage

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

(async () => {
	try {
		const value = await pTry(() => {
			return synchronousFunctionThatMightThrow();
		});
		console.log(value);
	} catch (error) {
		console.error(error);
	}
})();
```


## API

### pTry(fn, ...arguments)

Returns a `Promise` resolved with the value of calling `fn(...arguments)`. If the function throws an error, the returned `Promise` will be rejected with that error.

Support for passing arguments on to the `fn` is provided in order to be able to avoid creating unnecessary closures. You probably don't need this optimization unless you're pushing a *lot* of functions.

#### fn

The function to run to start the promise chain.

#### arguments

Arguments to pass to `fn`.


## Related

- [p-finally](https://github.com/sindresorhus/p-finally) - `Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome
- [More…](https://github.com/sindresorhus/promise-fun)


## License

MIT © [Sindre Sorhus](https://sindresorhus.com)

Version data entries

87 entries across 86 versions & 12 rubygems

Version Path
immosquare-cleaner-0.1.67 node_modules/p-try/readme.md
immosquare-cleaner-0.1.66 node_modules/p-try/readme.md
immosquare-cleaner-0.1.65 node_modules/p-try/readme.md
immosquare-cleaner-0.1.64 node_modules/p-try/readme.md
immosquare-cleaner-0.1.63 node_modules/p-try/readme.md
immosquare-cleaner-0.1.62 node_modules/p-try/readme.md
immosquare-cleaner-0.1.61 node_modules/p-try/readme.md
immosquare-cleaner-0.1.60 node_modules/p-try/readme.md
immosquare-cleaner-0.1.59 node_modules/p-try/readme.md
immosquare-cleaner-0.1.58 node_modules/p-try/readme.md
immosquare-cleaner-0.1.57 node_modules/p-try/readme.md
immosquare-cleaner-0.1.56 node_modules/p-try/readme.md
immosquare-cleaner-0.1.55 node_modules/p-try/readme.md
immosquare-cleaner-0.1.54 node_modules/p-try/readme.md
immosquare-cleaner-0.1.53 node_modules/p-try/readme.md
immosquare-cleaner-0.1.52 node_modules/p-try/readme.md
trusty-cms-6.3.1 node_modules/p-try/readme.md
immosquare-cleaner-0.1.51 node_modules/p-try/readme.md
immosquare-cleaner-0.1.50 node_modules/p-try/readme.md
immosquare-cleaner-0.1.49 node_modules/p-try/readme.md