mirror of
https://github.com/hexastack/hexabot
synced 2024-11-24 04:53:41 +00:00
fix: window is not defined
This commit is contained in:
parent
8383dc3c3e
commit
cefbe16b84
@ -5,6 +5,7 @@
|
|||||||
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
||||||
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
||||||
*/
|
*/
|
||||||
|
import crypto from 'crypto';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a cryptographically secure random value between 0 and 1
|
* Return a cryptographically secure random value between 0 and 1
|
||||||
@ -12,4 +13,4 @@
|
|||||||
* @returns A cryptographically secure random value between 0 and 1
|
* @returns A cryptographically secure random value between 0 and 1
|
||||||
*/
|
*/
|
||||||
export const getRadom = (): number =>
|
export const getRadom = (): number =>
|
||||||
window.crypto.getRandomValues(new Uint32Array(1))[0] * Math.pow(2, -32);
|
crypto.getRandomValues(new Uint32Array(1))[0] / 2 ** 32;
|
||||||
|
Loading…
Reference in New Issue
Block a user