refactor: cleanup import
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 29 Nov 2023 20:12:09 +0000 (21:12 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 29 Nov 2023 20:12:09 +0000 (21:12 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
benchmark-utils.mjs

index 59521b614ebee8564dd93e258bac032bba210ddb..7c7832e897d76061383214a3763142fa68159c6a 100644 (file)
@@ -1,11 +1,11 @@
-import crypto, { webcrypto } from 'node:crypto'
+import { randomBytes, getRandomValues } from 'node:crypto'
 
 /**
  * Generate a cryptographically secure random number in the [0,1[ range
  * @returns
  */
 export function secureRandom () {
-  return crypto.randomBytes(4).readUInt32LE() / 0x100000000
+  return randomBytes(4).readUInt32LE() / 0x100000000
 }
 
 /**
@@ -13,7 +13,7 @@ export function secureRandom () {
  * @returns
  */
 export function secureRandomWithRandomValues () {
-  return webcrypto.getRandomValues(new Uint32Array(1))[0] / 0x100000000
+  return getRandomValues(new Uint32Array(1))[0] / 0x100000000
 }
 
 /**