Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

std/async/debounce.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.143.0/async/debounce.ts";

Functions

Creates a debounced function that delays the given func by a given wait time in milliseconds. If the method is called again before the timeout expires, the previous call will be aborted.

Interfaces

A debounced function that will be delayed by a given wait time in milliseconds. If the method is called again before the timeout expires, the previous call will be aborted.