paradiego

This commit is contained in:
2024-09-18 13:34:19 -03:00
commit 3f0e204289
12510 changed files with 1486101 additions and 0 deletions

17
node_modules/@mui/utils/esm/debounce/debounce.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
// Corresponds to 10 frames at 60 Hz.
// A few bytes payload overhead when lodash/debounce is ~3 kB and debounce ~300 B.
export default function debounce(func, wait = 166) {
let timeout;
function debounced(...args) {
const later = () => {
// @ts-ignore
func.apply(this, args);
};
clearTimeout(timeout);
timeout = setTimeout(later, wait);
}
debounced.clear = () => {
clearTimeout(timeout);
};
return debounced;
}

2
node_modules/@mui/utils/esm/debounce/index.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export { default } from "./debounce.js";
export * from "./debounce.js";