fix: window is not defined

This commit is contained in:
yassinedorbozgithub 2024-09-30 09:26:41 +01:00
parent 8383dc3c3e
commit cefbe16b84

View File

@ -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;