Files
Stackq/node_modules/svelte-toolbelt/dist/utils/on-mount-effect.svelte.js
T
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

8 lines
169 B
JavaScript

import { untrack } from "svelte";
export function onMountEffect(fn) {
$effect(() => {
const cleanup = untrack(() => fn());
return cleanup;
});
}