Seitu - Type-Safe Utilities
Core

Debounce

createDebounce()

Creates a debounced readable that delays updates from a source subscribable.

The debounced store will only emit the latest value after wait milliseconds of inactivity from the source.

Examples

import { ,  } from 'seitu'

const  = ('')
const  = (, 300)
.( => .('debounced:', ))

On this page