(apiKey: string)
| 93 | * @returns string - The last 4 characters |
| 94 | */ |
| 95 | export function getApiKeyLast4(apiKey: string): string { |
| 96 | return apiKey.slice(-4) |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Gets the display format for an API key showing prefix and last 4 characters |
no outgoing calls
no test coverage detected