dev
import { onMount } from 'svelte'; export const mounted = { subscribe(fn: (_: boolean) => void) { fn(false); onMount(() => fn(true)); return () => {}; } };