📄️ How to use them?
Operators can be applied using the pipe() method. This method is available on all reactive sources in Signux (state, event, computed).
📄️ debounce
The debounce operator delays the emission of values until after a pause in activity.
📄️ filter
The filter operator lets values through only when they pass a given test.
📄️ map
The map operator transforms each value from a reactive source into a new value.
📄️ mapAsync
The mapAsync operator transforms each value from a source into an asynchronous operation,
📄️ merge
The merge operator combines multiple reactive sources into a single stream.
📄️ microDebounce
Added in v1.1.0
📄️ microThrottle
Added in v1.1.0
📄️ throttle
Added in v1.1.0