(value: string | null | undefined)
| 226 | } as const |
| 227 | |
| 228 | export function isCredentialSetValue(value: string | null | undefined): boolean { |
| 229 | return typeof value === 'string' && value.startsWith(CREDENTIAL_SET.PREFIX) |
| 230 | } |
| 231 | |
| 232 | export function extractCredentialSetId(value: string): string { |
| 233 | return value.slice(CREDENTIAL_SET.PREFIX.length) |
no outgoing calls
no test coverage detected