-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
random.js
37 lines (30 loc) · 923 Bytes
/
random.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* Isomorphic module for true random numbers / buffers / uuids.
*
* Attention: falls back to Math.random if the browser does not support crypto.
*
* @module random
*/
import * as math from './math.js'
import * as binary from './binary.js'
import { getRandomValues } from 'lib0/webcrypto'
export const rand = Math.random
export const uint32 = () => getRandomValues(new Uint32Array(1))[0]
export const uint53 = () => {
const arr = getRandomValues(new Uint32Array(8))
return (arr[0] & binary.BITS21) * (binary.BITS32 + 1) + (arr[1] >>> 0)
}
/**
* @template T
* @param {Array<T>} arr
* @return {T}
*/
export const oneOf = arr => arr[math.floor(rand() * arr.length)]
// @ts-ignore
const uuidv4Template = [1e7] + -1e3 + -4e3 + -8e3 + -1e11
/**
* @return {string}
*/
export const uuidv4 = () => uuidv4Template.replace(/[018]/g, /** @param {number} c */ c =>
(c ^ uint32() & 15 >> c / 4).toString(16)
)