(token: string)
| 3 | * WorkOS has used multiple key prefixes over time: 'wos_api_key_' (legacy) and 'sk_' (current). |
| 4 | */ |
| 5 | export function isWorkOSApiKeyFormat(token: string): boolean { |
| 6 | return token.startsWith('wos_api_key_') || token.startsWith('sk_'); |
| 7 | } |
no outgoing calls
no test coverage detected