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