operators
export const changeFoo= ({ state }) => {
state.foo = 'bar'
}import { pipe, debounce } from 'overmind'
import * as o from './operators'
export const search = pipe(
o.setQuery,
o.filterValidQuery,
debounce(200),
o.queryResult
)branch
catchError
debounce
filter
fork
noop
parallel
pipe
throttle
tryCatch
wait
waitUntil
when
Last updated