MCPcopy Index your code
hub / github.com/refined-github/refined-github / pEvery

Function pEvery

source/helpers/p-utils.ts:20–23  ·  view source on GitHub ↗
(iterable: Iterable<PromiseLike<unknown>>)

Source from the content-addressed store, hash-verified

18}
19
20async function pEvery(iterable: Iterable<PromiseLike<unknown>>): Promise<boolean> {
21 const results = await Promise.all(iterable);
22 return results.every(Boolean);
23}
24
25export function pSomeFunction<
26 List extends Iterable<unknown>,

Callers 1

pEveryFunctionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected