diff options
Diffstat (limited to 'bench/json-stringify/bun.js')
-rw-r--r-- | bench/json-stringify/bun.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/json-stringify/bun.js b/bench/json-stringify/bun.js index dd0f755aa..8c9893794 100644 --- a/bench/json-stringify/bun.js +++ b/bench/json-stringify/bun.js @@ -1,12 +1,12 @@ import { bench, run } from "mitata"; bench("JSON.stringify({hello: 'world'})", () => - JSON.stringify({ hello: "world" }) + JSON.stringify({ hello: "world" }), ); const otherUint8Array = new Uint8Array(1024); bench("Uint8Array.from(otherUint8Array)", () => - Uint8Array.from(otherUint8Array) + Uint8Array.from(otherUint8Array), ); run(); |