semantic update

This commit is contained in:
2026-02-20 10:41:15 +03:00
parent 43814511ee
commit 01efc9dae1
16 changed files with 1856 additions and 1326 deletions

View File

@@ -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]