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