mirror of
https://github.com/documenso/documenso.git
synced 2025-11-21 20:21:38 +10:00
6 lines
208 B
TypeScript
6 lines
208 B
TypeScript
import { customAlphabet } from 'nanoid';
|
|
|
|
const sessionTokenId = customAlphabet('abcdefhiklmnorstuvwxz', 10);
|
|
|
|
export const createSessionToken = (length = 10) => `session_${sessionTokenId(length)}` as const;
|