()
| 77 | |
| 78 | /** A short, URL-safe, cryptographically-random access token for a private live link. */ |
| 79 | export function makeAccessToken(): string { |
| 80 | // 12 bytes → 96 bits of entropy; base64url is compact and paste-safe. |
| 81 | return randomBytes(12).toString('base64url'); |
| 82 | } |
no outgoing calls
no test coverage detected