sendou.ink/app/utils/id.ts
2025-05-31 13:54:34 +03:00

11 lines
256 B
TypeScript

import { nanoid } from "nanoid";
export const SHORT_NANOID_LENGTH = 10;
/**
* Generates a short, unique identifier string (wraps nanoid using a smaller length than the default).
*/
export function shortNanoid() {
return nanoid(SHORT_NANOID_LENGTH);
}