diff options
author | 2022-09-14 19:25:16 -0700 | |
---|---|---|
committer | 2022-09-14 19:25:16 -0700 | |
commit | 2e2e134a1bf9680d86c0b00ff29489f6a6e6b5e1 (patch) | |
tree | 611f608d9809bc2cb3f5ce549a50ee093b597378 /bench/snippets/crypto.mjs | |
parent | 4e8bd97d9ce4c267a82a90fb7397fd573e7e422d (diff) | |
download | bun-2e2e134a1bf9680d86c0b00ff29489f6a6e6b5e1.tar.gz bun-2e2e134a1bf9680d86c0b00ff29489f6a6e6b5e1.tar.zst bun-2e2e134a1bf9680d86c0b00ff29489f6a6e6b5e1.zip |
typo
Diffstat (limited to 'bench/snippets/crypto.mjs')
-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"); |