From 0503b3a408652a9bc05d5ff3f207a8deaa4fa621 Mon Sep 17 00:00:00 2001 From: Percs <83934299+Percslol@users.noreply.github.com> Date: Fri, 18 Oct 2024 02:45:52 -0500 Subject: [PATCH] chore: prettier --- src/client/dom/mouse.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/client/dom/mouse.ts b/src/client/dom/mouse.ts index 3631805..2e0c26c 100644 --- a/src/client/dom/mouse.ts +++ b/src/client/dom/mouse.ts @@ -1,12 +1,12 @@ import { ScramjetClient } from "../client"; export default function (client: ScramjetClient, self: typeof window) { - client.Proxy("MouseEvent.prototype.initMouseEvent", { - apply(ctx) { - // Proxy(Window) instanceof Window SHOULD return true. But uhh, it doesn't. - ctx.args[3] = self; - - ctx.call(); - }, - }) -} \ No newline at end of file + client.Proxy("MouseEvent.prototype.initMouseEvent", { + apply(ctx) { + // Proxy(Window) instanceof Window SHOULD return true. But uhh, it doesn't. + ctx.args[3] = self; + + ctx.call(); + }, + }); +}