()
| 120 | // --------------------------------------------------------------------------- |
| 121 | |
| 122 | const shortId = (): string => Math.random().toString(36).slice(2, 8); |
| 123 | |
| 124 | export const freshCustomAuthSlug = (taken: ReadonlySet<string>): string => { |
| 125 | let candidate = `custom_${shortId()}`; |
no test coverage detected