semantic update
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
// [DEF:Debounce:Module]
|
||||
/**
|
||||
* @TIER: TRIVIAL
|
||||
* @PURPOSE: Debounce utility for limiting function execution rate
|
||||
* @LAYER: Infra
|
||||
*
|
||||
* Debounce utility function
|
||||
* Delays the execution of a function until a specified time has passed since the last call
|
||||
*
|
||||
@@ -17,3 +22,4 @@ export function debounce(func, wait) {
|
||||
timeout = setTimeout(later, wait);
|
||||
};
|
||||
}
|
||||
// [/DEF:Debounce:Module]
|
||||
|
||||
Reference in New Issue
Block a user