perf: use node: prefix to bypass caching call for builtins
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 11 Sep 2023 21:15:02 +0000 (23:15 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 11 Sep 2023 21:15:02 +0000 (23:15 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
benchmark-utils.mjs
random.mjs
uuid-generator.mjs

index e914e6b20337bf26b8aa58a8e4017ea834458fc8..35515c5197f3c333db7286726a8907f2a97d28e7 100644 (file)
@@ -1,4 +1,4 @@
-import crypto, { webcrypto } from 'crypto'
+import crypto, { webcrypto } from 'node:crypto'
 
 /**
  * Generate a cryptographically secure random number in the [0,1[ range
index e1062c05c7e4a4d17749645af4d8a271ac0fd547..2fff08e61c29e0c8d51161236b395d62fd34420e 100644 (file)
@@ -1,4 +1,4 @@
-import crypto from 'crypto'
+import crypto from 'node:crypto'
 import Benchmark from 'benny'
 import {
   secureRandom,
index 92e15d848468cc576ed91f7d06ba4d134a4ad041..f85005f91c86329520f5eeb19f85e3aaad9b7e6c 100644 (file)
@@ -1,4 +1,4 @@
-import crypto from 'crypto'
+import crypto from 'node:crypto'
 import Benchmark from 'benny'
 import { v4 as uuid } from 'uuid'