Runs a function without tracking property accesses.
Reads performed inside the callback will not subscribe the current
effect to the accessed properties. Useful for breaking cycles
or performing intentional non-reactive reads.
The context is determined by this, following the same rules as
signal.
Type Parameters
T = any
The type of the returned value.
Parameters
this: void|object
Reactive context; defaults to the shared global context.
Runs a function without tracking property accesses.
Reads performed inside the callback will not subscribe the current effect to the accessed properties. Useful for breaking cycles or performing intentional non-reactive reads.
The context is determined by
this, following the same rules as signal.