Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/denodash/src/function/throttle.ts>throttle

A utility library, similar to Underscore and Lodash, but written Typescript-First, designed for use in Deno
Latest
variable throttle
import { throttle } from "https://deno.land/x/denodash@0.1.3/src/function/throttle.ts";

type

(
func: Function,
wait?,
options?: ThrottleOptions,
) => { (...args: any[]): any; cancel(): void; }