From 3c1ad4b56892cffa45b8dbe958ac1ce3b8a7179f Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Wed, 14 Dec 2022 18:52:33 -0800 Subject: prettier --- bench/json-stringify/bun.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bench/json-stringify') 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(); -- cgit v1.2.3