import { type asyncUtils } from "https://deno.land/x/dtils@2.6.1/deps.ts";
const { DebouncedFunction } = asyncUtils;
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.