1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-19 00:18:09 +00:00
quot/app/src/helpers/random.ts

6 lines
118 B
TypeScript
Raw Normal View History

2022-08-24 13:17:37 +09:00
function random(): number {
return window.crypto.getRandomValues(new Uint16Array(1))[0]!;
}
export default random;