notes/quartz/util/random.ts

4 lines
92 B
TypeScript
Raw Normal View History

2025-03-10 15:13:04 -07:00
export function randomIdNonSecure() {
return Math.random().toString(36).substring(2, 8)
}