From 483585ccf9408dd194d5798a862afb9e5b66e219 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 29 Jan 2023 17:46:12 +0100 Subject: [PATCH] Silence eslint warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- benchmark-utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark-utils.js b/benchmark-utils.js index 121ef4a..e39708b 100644 --- a/benchmark-utils.js +++ b/benchmark-utils.js @@ -12,7 +12,7 @@ function secureRandom () { /** * Generate a cryptographically secure random number in the [0,1[ range * - * @param + * @returns */ function secureRandomWithRandomValues () { return crypto.getRandomValues(new Uint32Array(1))[0] / 0x100000000 -- 2.34.1