Launch Week Day 1: Socket for Jira Is Now Available.Learn More
Socket
Book a DemoSign in
Socket

p-some-first

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

p-some-first

Returns the first Promise in an iterable to resolve

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

p-some-first

Like Promise.all/Promise.any but only returns the first resolved value.

import PCancelable from "p-cancelable";
import pSomeFirst from "p-some-first";

(async () => {
	await pSomeFirst([
		new PCancelable((resolve) => setTimeout(() => resolve(1), 1000)),
		new PCancelable((resolve) => resolve(2)),
	]);
	// resolves to 1

	await pSomeFirst([
		new PCancelable((resolve, reject) => reject("error message")),
		new PCancelable((resolve, reject) => reject(new Error("intentional"))),
		new PCancelable((resolve, reject) => reject(42)),
	]);
	// rejects with ["error message", new Error("intentional"), 42]

	await pSomeFirst(
		[
			new PCancelable((resolve, reject) => reject("error message")),
			new PCancelable((resolve, reject) =>
				reject(new Error("intentional"))
			),
			new PCancelable((resolve, reject) => reject(42)),
		],
		7
	);
	// resolves to the fallback value (7)
})();

See the tests for more examples.

Cancelable Promises SHOULD be used otherwise there is hardly any difference between using p-some-first and this:

Promise.allSettled([
	Promise.reject(new Error("something")),
	Promise.resolve(42),
]).then((rr) => {
	return rr.find((r) => r.status === "fulfilled").value;
});

By using cancelable Promises, after one Promise resolves, all remaining Promises can be canceled and pSomeFirst will return without waiting for all promises to settle. Cancelable Promises will also help to minimize any errant UnhandledPromiseRejectionWarnings. Until JavaScript gets a way to cancel native Promises, you can use a library like p-cancelable or Bluebird to create cancelable Promises.

If cancelable Promises are not used (in a Node.js environment), a process warning will be emitted notifying you about this.

Keywords

abort

FAQs

Package last updated on 17 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts