(scopes: readonly string[])
| 111 | // --------------------------------------------------------------------------- |
| 112 | |
| 113 | export const serializeOAuthScopes = (scopes: readonly string[]): string => |
| 114 | [...new Set(scopes.filter((s) => s.length > 0))].join(" "); |
| 115 | |
| 116 | const isRecord = (value: unknown): value is Record<string, unknown> => |
| 117 | typeof value === "object" && value !== null && !Array.isArray(value); |
no outgoing calls
no test coverage detected