opencode-home / node_modules /@huggingface /hub /src /utils /insecureRandomString.ts
kenqtade's picture
Use ken-q org namespace for project Spaces
0865492
Raw
History Blame Contribute Delete
96 Bytes
export function insecureRandomString(): string {
return Math.random().toString(36).slice(2);
}