mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-20 09:02:51 +00:00
6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import { customAlphabet } from "nanoid"
|
|
|
|
export const generateId = () =>
|
|
customAlphabet("123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz")(
|
|
22,
|
|
)
|