@better-auth/core 1.7.0-beta.1 → 1.7.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/api/index.mjs +29 -3
  2. package/dist/context/global.mjs +1 -1
  3. package/dist/db/adapter/factory.mjs +2 -3
  4. package/dist/db/adapter/get-id-field.mjs +1 -1
  5. package/dist/instrumentation/api.mjs +12 -0
  6. package/dist/instrumentation/noop.mjs +42 -0
  7. package/dist/instrumentation/pure.index.d.mts +7 -0
  8. package/dist/instrumentation/pure.index.mjs +7 -0
  9. package/dist/instrumentation/tracer.mjs +6 -3
  10. package/dist/oauth2/index.d.mts +2 -2
  11. package/dist/oauth2/index.mjs +2 -2
  12. package/dist/oauth2/utils.d.mts +10 -1
  13. package/dist/oauth2/utils.mjs +13 -1
  14. package/dist/social-providers/apple.d.mts +19 -3
  15. package/dist/social-providers/apple.mjs +7 -1
  16. package/dist/social-providers/atlassian.mjs +1 -1
  17. package/dist/social-providers/cognito.d.mts +1 -1
  18. package/dist/social-providers/cognito.mjs +3 -2
  19. package/dist/social-providers/discord.d.mts +1 -1
  20. package/dist/social-providers/facebook.d.mts +3 -3
  21. package/dist/social-providers/facebook.mjs +8 -1
  22. package/dist/social-providers/figma.mjs +1 -1
  23. package/dist/social-providers/github.d.mts +1 -1
  24. package/dist/social-providers/google.d.mts +1 -1
  25. package/dist/social-providers/google.mjs +3 -2
  26. package/dist/social-providers/linkedin.d.mts +2 -2
  27. package/dist/social-providers/linkedin.mjs +1 -1
  28. package/dist/social-providers/microsoft-entra-id.d.mts +3 -3
  29. package/dist/social-providers/microsoft-entra-id.mjs +6 -1
  30. package/dist/social-providers/paybin.mjs +1 -1
  31. package/dist/social-providers/paypal.mjs +1 -1
  32. package/dist/social-providers/salesforce.mjs +1 -1
  33. package/dist/types/context.d.mts +7 -1
  34. package/dist/utils/async.d.mts +22 -0
  35. package/dist/utils/async.mjs +32 -0
  36. package/dist/utils/host.d.mts +147 -0
  37. package/dist/utils/host.mjs +291 -0
  38. package/dist/utils/is-api-error.d.mts +6 -0
  39. package/dist/utils/is-api-error.mjs +8 -0
  40. package/package.json +10 -1
  41. package/src/api/index.ts +39 -5
  42. package/src/db/adapter/factory.ts +3 -3
  43. package/src/db/adapter/get-id-field.ts +2 -2
  44. package/src/db/get-tables.ts +2 -0
  45. package/src/db/schema/user.ts +3 -0
  46. package/src/instrumentation/api.ts +17 -0
  47. package/src/instrumentation/noop.ts +74 -0
  48. package/src/instrumentation/pure.index.ts +31 -0
  49. package/src/instrumentation/tracer.ts +8 -3
  50. package/src/oauth2/index.ts +5 -1
  51. package/src/oauth2/utils.ts +13 -0
  52. package/src/social-providers/apple.ts +11 -3
  53. package/src/social-providers/cognito.ts +3 -2
  54. package/src/social-providers/discord.ts +1 -1
  55. package/src/social-providers/facebook.ts +13 -4
  56. package/src/social-providers/github.ts +1 -1
  57. package/src/social-providers/google.ts +3 -2
  58. package/src/social-providers/linkedin.ts +3 -3
  59. package/src/social-providers/microsoft-entra-id.ts +14 -4
  60. package/src/types/context.ts +8 -1
  61. package/src/utils/async.ts +53 -0
  62. package/src/utils/host.ts +401 -0
  63. package/src/utils/is-api-error.ts +10 -0
@@ -0,0 +1,74 @@
1
+ import type { Span, Tracer } from "@opentelemetry/api";
2
+
3
+ export type OpenTelemetryAPI = Pick<
4
+ typeof import("@opentelemetry/api"),
5
+ "trace" | "SpanStatusCode"
6
+ >;
7
+
8
+ function createNoopSpan(): Span {
9
+ const span = {
10
+ end(): void {},
11
+ setAttribute(_key: string, _value: unknown): void {},
12
+ setStatus(_status: unknown): void {},
13
+ recordException(_exception: unknown): void {},
14
+ updateName(_name: string) {
15
+ return span;
16
+ },
17
+ } as unknown as Span;
18
+ return span;
19
+ }
20
+
21
+ function createNoopTracer(noopSpan: Span): Tracer {
22
+ // OpenTelemetry `Tracer.startActiveSpan` has three overloads:
23
+ // (name, fn)
24
+ // (name, options, fn)
25
+ // (name, options, context, fn)
26
+ // The callback is always the last argument; fish it out by arity so a
27
+ // 2-arg call (options omitted) doesn't try to invoke `undefined`.
28
+ function startActiveSpan<F extends (span: Span) => unknown>(
29
+ _name: string,
30
+ fn: F,
31
+ ): ReturnType<F>;
32
+ function startActiveSpan<F extends (span: Span) => unknown>(
33
+ _name: string,
34
+ _options: { attributes?: Record<string, string | number | boolean> },
35
+ fn: F,
36
+ ): ReturnType<F>;
37
+ function startActiveSpan<F extends (span: Span) => unknown>(
38
+ _name: string,
39
+ _options: { attributes?: Record<string, string | number | boolean> },
40
+ _context: unknown,
41
+ fn: F,
42
+ ): ReturnType<F>;
43
+ function startActiveSpan(_name: string, ...rest: Array<unknown>): unknown {
44
+ const fn = rest[rest.length - 1] as (span: Span) => unknown;
45
+ return fn(noopSpan);
46
+ }
47
+ return { startActiveSpan } as Tracer;
48
+ }
49
+
50
+ function createNoopTraceAPI() {
51
+ const noopTracer = createNoopTracer(createNoopSpan());
52
+ return {
53
+ getTracer(_name?: string, _version?: string) {
54
+ return noopTracer;
55
+ },
56
+ getActiveSpan(): Span | undefined {
57
+ return undefined;
58
+ },
59
+ };
60
+ }
61
+
62
+ function createNoopOpenTelemetryAPI(): OpenTelemetryAPI {
63
+ return {
64
+ SpanStatusCode: {
65
+ UNSET: 0,
66
+ OK: 1,
67
+ ERROR: 2,
68
+ },
69
+ trace: createNoopTraceAPI(),
70
+ } as OpenTelemetryAPI;
71
+ }
72
+
73
+ export const noopOpenTelemetryAPI: OpenTelemetryAPI =
74
+ createNoopOpenTelemetryAPI();
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Noop variant of `./instrumentation` for runtimes where the dynamic
3
+ * `import("@opentelemetry/api")` in `./api` throws synchronously instead of
4
+ * rejecting its returned promise. Convex's V8 isolate is the reproducer: bare
5
+ * specifiers are rejected at resolve time in `get-convex/convex-backend`
6
+ * `crates/isolate/src/request_scope.rs`, so the `.catch()` in
7
+ * `getOpenTelemetryAPI` never runs and every `withSpan` call surfaces an
8
+ * uncaught error.
9
+ *
10
+ * Public surface must stay identical to `./index` (enforced by `pure.test.ts`).
11
+ */
12
+
13
+ export * from "./attributes";
14
+
15
+ export function withSpan<T>(
16
+ name: string,
17
+ attributes: Record<string, string | number | boolean>,
18
+ fn: () => T,
19
+ ): T;
20
+ export function withSpan<T>(
21
+ name: string,
22
+ attributes: Record<string, string | number | boolean>,
23
+ fn: () => Promise<T>,
24
+ ): Promise<T>;
25
+ export function withSpan<T>(
26
+ _name: string,
27
+ _attributes: Record<string, string | number | boolean>,
28
+ fn: () => T | Promise<T>,
29
+ ): T | Promise<T> {
30
+ return fn();
31
+ }
@@ -1,12 +1,10 @@
1
1
  import type { Span } from "@opentelemetry/api";
2
- import { SpanStatusCode, trace } from "@opentelemetry/api";
2
+ import { getOpenTelemetryAPI } from "./api";
3
3
  import { ATTR_HTTP_RESPONSE_STATUS_CODE } from "./attributes";
4
4
 
5
5
  const INSTRUMENTATION_SCOPE = "better-auth";
6
6
  const INSTRUMENTATION_VERSION = import.meta.env?.BETTER_AUTH_VERSION ?? "1.0.0";
7
7
 
8
- const tracer = trace.getTracer(INSTRUMENTATION_SCOPE, INSTRUMENTATION_VERSION);
9
-
10
8
  /**
11
9
  * Better-auth uses `throw ctx.redirect(url)` for flow control (e.g. OAuth
12
10
  * callbacks). These are APIErrors with 3xx status codes and should not be
@@ -27,6 +25,7 @@ function isRedirectError(err: unknown): boolean {
27
25
  }
28
26
 
29
27
  function endSpanWithError(span: Span, err: unknown) {
28
+ const { SpanStatusCode } = getOpenTelemetryAPI();
30
29
  if (isRedirectError(err)) {
31
30
  span.setAttribute(
32
31
  ATTR_HTTP_RESPONSE_STATUS_CODE,
@@ -66,6 +65,12 @@ export function withSpan<T>(
66
65
  attributes: Record<string, string | number | boolean>,
67
66
  fn: () => T | Promise<T>,
68
67
  ): T | Promise<T> {
68
+ const { trace } = getOpenTelemetryAPI();
69
+ const tracer = trace.getTracer(
70
+ INSTRUMENTATION_SCOPE,
71
+ INSTRUMENTATION_VERSION,
72
+ );
73
+
69
74
  return tracer.startActiveSpan(name, { attributes }, (span) => {
70
75
  try {
71
76
  const result = fn();
@@ -25,7 +25,11 @@ export {
25
25
  refreshAccessToken,
26
26
  refreshAccessTokenRequest,
27
27
  } from "./refresh-access-token";
28
- export { generateCodeChallenge, getOAuth2Tokens } from "./utils";
28
+ export {
29
+ generateCodeChallenge,
30
+ getOAuth2Tokens,
31
+ getPrimaryClientId,
32
+ } from "./utils";
29
33
  export {
30
34
  authorizationCodeRequest,
31
35
  createAuthorizationCodeRequest,
@@ -28,6 +28,19 @@ export function getOAuth2Tokens(data: Record<string, any>): OAuth2Tokens {
28
28
  };
29
29
  }
30
30
 
31
+ /**
32
+ * Return the provider's primary Client ID: the single string, or the entry at
33
+ * array index 0 for the cross-platform form used by ID token audience
34
+ * verification. Index 0 is the designated primary and pairs with
35
+ * `clientSecret` for the authorization code flow; later array entries are
36
+ * only used as additional accepted audiences. Returns `undefined` when the
37
+ * primary value is missing or an empty string.
38
+ */
39
+ export function getPrimaryClientId(clientId: unknown): string | undefined {
40
+ const value = Array.isArray(clientId) ? clientId[0] : clientId;
41
+ return typeof value === "string" && value.length > 0 ? value : undefined;
42
+ }
43
+
31
44
  export async function generateCodeChallenge(codeVerifier: string) {
32
45
  const encoder = new TextEncoder();
33
46
  const data = encoder.encode(codeVerifier);
@@ -1,10 +1,12 @@
1
1
  import { betterFetch } from "@better-fetch/fetch";
2
2
 
3
3
  import { decodeJwt, decodeProtectedHeader, importJWK, jwtVerify } from "jose";
4
- import { APIError } from "../error";
4
+ import { logger } from "../env";
5
+ import { APIError, BetterAuthError } from "../error";
5
6
  import type { OAuthProvider, ProviderOptions } from "../oauth2";
6
7
  import {
7
8
  createAuthorizationURL,
9
+ getPrimaryClientId,
8
10
  refreshAccessToken,
9
11
  validateAuthorizationCode,
10
12
  } from "../oauth2";
@@ -20,7 +22,7 @@ export interface AppleProfile {
20
22
  * The email address is either the user's real email address or the proxy
21
23
  * address, depending on their status private email relay service.
22
24
  */
23
- email: string;
25
+ email?: string;
24
26
  /**
25
27
  * A string or Boolean value that indicates whether the service verifies
26
28
  * the email. The value can either be a string ("true" or "false") or a
@@ -70,7 +72,7 @@ export interface AppleNonConformUser {
70
72
  }
71
73
 
72
74
  export interface AppleOptions extends ProviderOptions<AppleProfile> {
73
- clientId: string;
75
+ clientId: string | string[];
74
76
  appBundleIdentifier?: string | undefined;
75
77
  audience?: (string | string[]) | undefined;
76
78
  }
@@ -81,6 +83,12 @@ export const apple = (options: AppleOptions) => {
81
83
  id: "apple",
82
84
  name: "Apple",
83
85
  async createAuthorizationURL({ state, scopes, redirectURI }) {
86
+ if (!getPrimaryClientId(options.clientId) || !options.clientSecret) {
87
+ logger.error(
88
+ "Client ID and client secret are required for Apple. Make sure to provide them in the options.",
89
+ );
90
+ throw new BetterAuthError("CLIENT_ID_AND_SECRET_REQUIRED");
91
+ }
84
92
  const _scope = options.disableDefaultScope ? [] : ["email", "name"];
85
93
  if (options.scope) _scope.push(...options.scope);
86
94
  if (scopes) _scope.push(...scopes);
@@ -5,6 +5,7 @@ import { APIError, BetterAuthError } from "../error";
5
5
  import type { OAuthProvider, ProviderOptions } from "../oauth2";
6
6
  import {
7
7
  createAuthorizationURL,
8
+ getPrimaryClientId,
8
9
  refreshAccessToken,
9
10
  validateAuthorizationCode,
10
11
  } from "../oauth2";
@@ -30,7 +31,7 @@ export interface CognitoProfile {
30
31
  }
31
32
 
32
33
  export interface CognitoOptions extends ProviderOptions<CognitoProfile> {
33
- clientId: string;
34
+ clientId: string | string[];
34
35
  /**
35
36
  * The Cognito domain (e.g., "your-app.auth.us-east-1.amazoncognito.com")
36
37
  */
@@ -60,7 +61,7 @@ export const cognito = (options: CognitoOptions) => {
60
61
  id: "cognito",
61
62
  name: "Cognito",
62
63
  async createAuthorizationURL({ state, scopes, codeVerifier, redirectURI }) {
63
- if (!options.clientId) {
64
+ if (!getPrimaryClientId(options.clientId)) {
64
65
  logger.error(
65
66
  "ClientId is required for Amazon Cognito. Make sure to provide them in the options.",
66
67
  );
@@ -41,7 +41,7 @@ export interface DiscordProfile extends Record<string, any> {
41
41
  /** whether the email on this account has been verified */
42
42
  verified: boolean;
43
43
  /** the user's email */
44
- email: string;
44
+ email?: string | null;
45
45
  /**
46
46
  * the flags on a user's account:
47
47
  * https://discord.com/developers/docs/resources/user#user-object-user-flags
@@ -1,16 +1,19 @@
1
1
  import { betterFetch } from "@better-fetch/fetch";
2
2
  import { createRemoteJWKSet, decodeJwt, jwtVerify } from "jose";
3
+ import { logger } from "../env";
4
+ import { BetterAuthError } from "../error";
3
5
  import type { OAuthProvider, ProviderOptions } from "../oauth2";
4
6
  import {
5
7
  createAuthorizationURL,
8
+ getPrimaryClientId,
6
9
  refreshAccessToken,
7
10
  validateAuthorizationCode,
8
11
  } from "../oauth2";
9
12
  export interface FacebookProfile {
10
13
  id: string;
11
14
  name: string;
12
- email: string;
13
- email_verified: boolean;
15
+ email?: string;
16
+ email_verified?: boolean;
14
17
  picture: {
15
18
  data: {
16
19
  height: number;
@@ -22,7 +25,7 @@ export interface FacebookProfile {
22
25
  }
23
26
 
24
27
  export interface FacebookOptions extends ProviderOptions<FacebookProfile> {
25
- clientId: string;
28
+ clientId: string | string[];
26
29
  /**
27
30
  * Extend list of fields to retrieve from the Facebook user profile.
28
31
  *
@@ -41,6 +44,12 @@ export const facebook = (options: FacebookOptions) => {
41
44
  id: "facebook",
42
45
  name: "Facebook",
43
46
  async createAuthorizationURL({ state, scopes, redirectURI, loginHint }) {
47
+ if (!getPrimaryClientId(options.clientId) || !options.clientSecret) {
48
+ logger.error(
49
+ "Client ID and client secret are required for Facebook. Make sure to provide them in the options.",
50
+ );
51
+ throw new BetterAuthError("CLIENT_ID_AND_SECRET_REQUIRED");
52
+ }
44
53
  const _scopes = options.disableDefaultScope
45
54
  ? []
46
55
  : ["email", "public_profile"];
@@ -195,7 +204,7 @@ export const facebook = (options: FacebookOptions) => {
195
204
  name: profile.name,
196
205
  email: profile.email,
197
206
  image: profile.picture.data.url,
198
- emailVerified: profile.email_verified,
207
+ emailVerified: profile.email_verified ?? false,
199
208
  ...userMap,
200
209
  },
201
210
  data: profile,
@@ -31,7 +31,7 @@ export interface GithubProfile {
31
31
  company: string;
32
32
  blog: string;
33
33
  location: string;
34
- email: string;
34
+ email: string | null;
35
35
  hireable: boolean;
36
36
  bio: string;
37
37
  twitter_username: string;
@@ -5,6 +5,7 @@ import { APIError, BetterAuthError } from "../error";
5
5
  import type { OAuthProvider, ProviderOptions } from "../oauth2";
6
6
  import {
7
7
  createAuthorizationURL,
8
+ getPrimaryClientId,
8
9
  refreshAccessToken,
9
10
  validateAuthorizationCode,
10
11
  } from "../oauth2";
@@ -37,7 +38,7 @@ export interface GoogleProfile {
37
38
  }
38
39
 
39
40
  export interface GoogleOptions extends ProviderOptions<GoogleProfile> {
40
- clientId: string;
41
+ clientId: string | string[];
41
42
  /**
42
43
  * The access type to use for the authorization code request
43
44
  */
@@ -64,7 +65,7 @@ export const google = (options: GoogleOptions) => {
64
65
  loginHint,
65
66
  display,
66
67
  }) {
67
- if (!options.clientId || !options.clientSecret) {
68
+ if (!getPrimaryClientId(options.clientId) || !options.clientSecret) {
68
69
  logger.error(
69
70
  "Client Id and Client Secret is required for Google. Make sure to provide them in the options.",
70
71
  );
@@ -16,8 +16,8 @@ export interface LinkedInProfile {
16
16
  country: string;
17
17
  language: string;
18
18
  };
19
- email: string;
20
- email_verified: boolean;
19
+ email?: string;
20
+ email_verified?: boolean;
21
21
  }
22
22
 
23
23
  export interface LinkedInOptions extends ProviderOptions<LinkedInProfile> {
@@ -98,7 +98,7 @@ export const linkedin = (options: LinkedInOptions) => {
98
98
  id: profile.sub,
99
99
  name: profile.name,
100
100
  email: profile.email,
101
- emailVerified: profile.email_verified || false,
101
+ emailVerified: profile.email_verified ?? false,
102
102
  image: profile.picture,
103
103
  ...userMap,
104
104
  },
@@ -2,10 +2,11 @@ import { base64 } from "@better-auth/utils/base64";
2
2
  import { betterFetch } from "@better-fetch/fetch";
3
3
  import { decodeJwt, decodeProtectedHeader, importJWK, jwtVerify } from "jose";
4
4
  import { logger } from "../env";
5
- import { APIError } from "../error";
5
+ import { APIError, BetterAuthError } from "../error";
6
6
  import type { OAuthProvider, ProviderOptions } from "../oauth2";
7
7
  import {
8
8
  createAuthorizationURL,
9
+ getPrimaryClientId,
9
10
  refreshAccessToken,
10
11
  validateAuthorizationCode,
11
12
  } from "../oauth2";
@@ -35,7 +36,7 @@ export interface MicrosoftEntraIDProfile extends Record<string, any> {
35
36
  /** The primary username that represents the user */
36
37
  preferred_username: string;
37
38
  /** User's email address */
38
- email: string;
39
+ email?: string;
39
40
  /** Human-readable value that identifies the subject of the token */
40
41
  name: string;
41
42
  /** Matches the parameter included in the original authorize request */
@@ -116,7 +117,7 @@ export interface MicrosoftEntraIDProfile extends Record<string, any> {
116
117
 
117
118
  export interface MicrosoftOptions
118
119
  extends ProviderOptions<MicrosoftEntraIDProfile> {
119
- clientId: string;
120
+ clientId: string | string[];
120
121
  /**
121
122
  * The tenant ID of the Microsoft account
122
123
  * @default "common"
@@ -149,6 +150,15 @@ export const microsoft = (options: MicrosoftOptions) => {
149
150
  id: "microsoft",
150
151
  name: "Microsoft EntraID",
151
152
  createAuthorizationURL(data) {
153
+ // Microsoft Entra supports public clients (SPA / native apps with
154
+ // PKCE only), so clientSecret is intentionally not required here.
155
+ // See https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-auth-code-flow
156
+ if (!getPrimaryClientId(options.clientId)) {
157
+ logger.error(
158
+ "Client Id is required for Microsoft Entra ID. Make sure to provide it in the options.",
159
+ );
160
+ throw new BetterAuthError("CLIENT_ID_AND_SECRET_REQUIRED");
161
+ }
152
162
  const scopes = options.disableDefaultScope
153
163
  ? []
154
164
  : ["openid", "profile", "email", "User.Read", "offline_access"];
@@ -190,7 +200,7 @@ export const microsoft = (options: MicrosoftOptions) => {
190
200
  const publicKey = await getMicrosoftPublicKey(kid, tenant, authority);
191
201
  const verifyOptions: {
192
202
  algorithms: [string];
193
- audience: string;
203
+ audience: string | string[];
194
204
  maxTokenAge: string;
195
205
  issuer?: string;
196
206
  } = {
@@ -151,7 +151,12 @@ export interface InternalAdapter<
151
151
 
152
152
  deleteAccounts(userId: string): Promise<void>;
153
153
 
154
- deleteAccount(accountId: string): Promise<void>;
154
+ /**
155
+ * Delete an account by its primary key.
156
+ *
157
+ * @param id - The account row's primary key (the `id` column, not the `accountId` column).
158
+ */
159
+ deleteAccount(id: string): Promise<void>;
155
160
 
156
161
  deleteSessions(userIdOrSessionTokens: string | string[]): Promise<void>;
157
162
 
@@ -215,6 +220,8 @@ export interface InternalAdapter<
215
220
  identifier: string,
216
221
  data: Partial<Verification>,
217
222
  ): Promise<Verification>;
223
+
224
+ refreshUserSessions(user: User): Promise<void>;
218
225
  }
219
226
 
220
227
  type CreateCookieGetterFn = (
@@ -0,0 +1,53 @@
1
+ import type { Awaitable } from "../types/helper";
2
+
3
+ export interface MapConcurrentOptions {
4
+ /**
5
+ * Max in-flight mappers. Non-integer values are floored, then clamped
6
+ * to the range `[1, items.length]`. `NaN` falls back to 1.
7
+ */
8
+ concurrency: number;
9
+ /**
10
+ * Rejects with `signal.reason` when aborted. In-flight mappers keep
11
+ * running but their results are not returned.
12
+ */
13
+ signal?: AbortSignal;
14
+ }
15
+
16
+ /**
17
+ * Run an async mapper over items with bounded concurrency.
18
+ * Preserves input order in the result. Fails fast on the first rejection.
19
+ */
20
+ export async function mapConcurrent<T, R>(
21
+ items: readonly T[],
22
+ fn: (item: T, index: number) => Awaitable<R>,
23
+ options: MapConcurrentOptions,
24
+ ): Promise<R[]> {
25
+ const n = items.length;
26
+ if (n === 0) return [];
27
+
28
+ const { signal } = options;
29
+ if (signal?.aborted) throw signal.reason;
30
+
31
+ const raw = Math.floor(options.concurrency);
32
+ const width = Math.min(n, raw >= 1 ? raw : 1);
33
+
34
+ const results = new Array<R>(n);
35
+ let idx = 0;
36
+ let failed = false;
37
+
38
+ const worker = async (): Promise<void> => {
39
+ while (!failed && idx < n) {
40
+ if (signal?.aborted) throw signal.reason;
41
+ const i = idx++;
42
+ try {
43
+ results[i] = await fn(items[i] as T, i);
44
+ } catch (error) {
45
+ failed = true;
46
+ throw error;
47
+ }
48
+ }
49
+ };
50
+
51
+ await Promise.all(Array.from({ length: width }, worker));
52
+ return results;
53
+ }