mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-20 14:03:59 +00:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import { customAlphabet } from "nanoid"
|
|
|
|
const generate = customAlphabet(
|
|
"123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz",
|
|
)
|
|
|
|
export const generateId = () => generate(22)
|