Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
import * as denogres from "https://deno.land/x/denogres@v4.0.1/vendor/deno.land/std@0.173.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.