Debounce
Limit calls.
- Snippet
- JavaScript and TypeScript
- 1 blank to fill
function debounce(fn, ms = 300) {
let t;
return (...args) => {
clearTimeout(t);
t = setTimeout(() => fn(...args), ms);
};
} Orange words are blanks you have not filled yet. Press ⌘ Return to copy.
About this template
Limit calls.
- Category
- Code snippets
- Pack
- JavaScript and TypeScript
- Type
- Snippet, a short message
- Asks for
- Delay
Use it anywhere you write: email, chat, a document or a support tool. If you send it often, save the finished text as a snippet in ClipBuddy and paste it again from your clipboard history with ⌘⇧V.
Template source
The template as written, with its blanks in double braces, such as {{Name}}.
function debounce(fn, ms = {{Delay=300}}) {
let t;
return (...args) => {
clearTimeout(t);
t = setTimeout(() => fn(...args), ms);
};
}