From 38e8c42cf02f73fb300889ab989088899a3aedb7 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 9 Sep 2025 23:43:37 -0400 Subject: ci: format --- cloud/core/src/util/fn.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'cloud/core/src') diff --git a/cloud/core/src/util/fn.ts b/cloud/core/src/util/fn.ts index 038a50719..52df65e2b 100644 --- a/cloud/core/src/util/fn.ts +++ b/cloud/core/src/util/fn.ts @@ -1,9 +1,6 @@ import { z } from "zod" -export function fn( - schema: T, - cb: (input: z.output) => Result, -) { +export function fn(schema: T, cb: (input: z.output) => Result) { const result = (input: z.input) => { const parsed = schema.parse(input) return cb(parsed) -- cgit v1.2.3