UNPKG

homebridge-raspberry-pi-sensehat

Version:
11 lines 298 B
/** * Debounce function to limit requests to Raspberry SenseHAT */ export function debounce(func, delay) { let timeout; return function (...args) { clearTimeout(timeout); timeout = setTimeout(() => func.apply(this, args), delay); }; } //# sourceMappingURL=utils.js.map