mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* Fixes #7811 * [autofix.ci] apply automated fixes * Update src/bun.js/webcore.zig Co-authored-by: Markus Staab <maggus.staab@googlemail.com> --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Markus Staab <maggus.staab@googlemail.com>
8 lines
129 B
JavaScript
8 lines
129 B
JavaScript
import { bench, run } from "./runner.mjs";
|
|
|
|
bench("crypto.randomUUID()", () => {
|
|
return crypto.randomUUID();
|
|
});
|
|
|
|
await run();
|