rittenhop-dev/versions/5.94.2/node_modules/lib0/random.js
2024-09-23 19:40:12 -04:00

38 lines
923 B
JavaScript

/**
* 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)
)