//! SPDX-FileCopyrightText: 2025 Chris Duncan <chris@zoso.dev>
//! SPDX-License-Identifier: GPL-3.0-or-later
+//@ts-nocheck
export { env } from '../env.mjs'
if (globalThis.sessionStorage == null) {
try {
await fn
throw new Error(msg ?? 'expected async function to reject')
- } catch {}
+ } catch { }
} else {
throw new Error(msg ?? 'expected async function')
}
try {
fn()
throw new Error(msg ?? `expected function to throw an exception`)
- } catch {}
+ } catch { }
}
}