Skip to content

@continuum-js/std


@continuum-js/std / debounce

Function: debounce()

debounce<A>(e, ms): Stream<A>

Defined in: index.ts:18

Emit only after ms of quiet, coalescing a burst into its last value. (Trailing debounce.)

Type Parameters

A

A

Parameters

e

Stream<A>

ms

number

Returns

Stream<A>