@embra/reactivity - v0.0.3
    Preparing search index...

    Variable traceConst

    trace: Trace = ...

    Console logs trace information about the provided Readable or WatchEffect.

    import { trace, writable, watch } from "@embra/reactivity";
    const count$ = writable(0);

    trace(count$);

    watch(() => count$.value++);

    count$.set(1);