refactor: cleanup import
[benchmarks-js.git] / benchmark-utils.mjs
index 2f1a8629e948a6955d7aca380b84d75bfe22e9cf..7c7832e897d76061383214a3763142fa68159c6a 100644 (file)
@@ -1,11 +1,11 @@
-import crypto from '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 crypto.getRandomValues(new Uint32Array(1))[0] / 0x100000000
+  return getRandomValues(new Uint32Array(1))[0] / 0x100000000
 }
 
 /**
@@ -93,5 +93,5 @@ export function generateRandomObject (
  * @returns
  */
 export async function sleep (ms) {
-  return new Promise((resolve) => setTimeout(resolve, ms))
+  return await new Promise(resolve => setTimeout(resolve, ms))
 }