Skip to content

Commit

Permalink
fix: trigger release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Jun 15, 2024
1 parent 6e8c3cd commit ee189e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/debounce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Returns a function, that, as long as it continues to be invoked, will not be triggered. The initial function will be called after the debounced function stops being called for a certain number of milliseconds.
*
* @param initialFunction Initial function to debounce
* @param delay Time to wait for recurring bounces
* @param {number} delay Time to wait for recurring bounces
* @returns the debounced function.
*/
export function debounce(initialFunction: (...args: any) => any, delay: number): (...args: any) => void {
Expand Down

0 comments on commit ee189e2

Please sign in to comment.