quartz-clone/quartz/util/random.ts

4 lines
92 B
TypeScript
Raw Permalink Normal View History

2025-06-19 21:42:47 +00:00
export function randomIdNonSecure() {
return Math.random().toString(36).substring(2, 8)
}