mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-25 04:37:13 -05:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
import { nanoid } from "nanoid";
|
|
|
|
export const SHORT_NANOID_LENGTH = 10;
|
|
|
|
export function shortNanoid() {
|
|
return nanoid(SHORT_NANOID_LENGTH);
|
|
}
|