mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
8 lines
205 B
JavaScript
8 lines
205 B
JavaScript
import { Sha512 } from "https://deno.land/std/hash/sha512.ts";
|
|
|
|
import { bench, run } from "https://esm.run/mitata";
|
|
|
|
bench("Sha512", () => new Sha512().update("hello world").arrayBuffer());
|
|
|
|
await run();
|