Files
quartz/quartz/util/random.ts
Jacky Zhao a8001e9554
Some checks are pending
Build and Test / build-and-test (macos-latest) (push) Waiting to run
Build and Test / build-and-test (windows-latest) (push) Waiting to run
Build and Test / build-and-test (ubuntu-latest) (push) Has been skipped
Build and Test / publish-tag (push) Has been skipped
feat: support non-singleton explorer
2025-03-10 15:13:22 -07:00

4 lines
92 B
TypeScript

export function randomIdNonSecure() {
return Math.random().toString(36).substring(2, 8)
}