diff options
Diffstat (limited to 'bench/snippets')
-rw-r--r-- | bench/snippets/crypto.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/snippets/crypto.mjs b/bench/snippets/crypto.mjs index 34e420787..b0b992a0f 100644 --- a/bench/snippets/crypto.mjs +++ b/bench/snippets/crypto.mjs @@ -1,7 +1,7 @@ // so it can run in environments without node module resolution import { bench, run } from "../node_modules/mitata/src/cli.mjs"; -var crypto = globalThis.crytpto; +var crypto = globalThis.crypto; if (!crypto) { crypto = await import("node:crypto"); |