Files
bun.sh/bench/snippets/sha512.js
2022-08-21 00:51:27 -07:00

9 lines
160 B
JavaScript

import { bench, run } from "mitata";
import { SHA512 } from "bun";
bench('SHA512.hash("hello world")', () => {
SHA512.hash("hello world");
});
await run();