mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
9 lines
167 B
JavaScript
9 lines
167 B
JavaScript
import { SHA512 } from "bun";
|
|
import { bench, run } from "../runner.mjs";
|
|
|
|
bench('SHA512.hash("hello world")', () => {
|
|
SHA512.hash("hello world");
|
|
});
|
|
|
|
await run();
|