UNPKG

@dualjack/svelte-tools

Version:

### Why? Because runes are not safe to toss around by design.

9 lines (8 loc) 220 B
export function computed(cb, options) { const { debounceDelay = 0, } = options ?? {}; // TODO - debounce logic. let derived = $derived.by(cb); return { get current() { return derived; } }; }