claude-gemini
Version:
Global CLI tool for Claude-Gemini integration across projects
17 lines • 462 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.debounce = debounce;
function debounce(func, wait) {
let timeout = null;
return function executedFunction(...args) {
const later = () => {
timeout = null;
func(...args);
};
if (timeout) {
clearTimeout(timeout);
}
timeout = setTimeout(later, wait);
};
}
//# sourceMappingURL=debounce.js.map