RocketChat/Rocket.Chat

View on GitHub
apps/meteor/packages/meteor-user-presence/client/utils.js

Summary

Maintainability
A
0 mins
Test Coverage
export function debounce(func, wait) {
    let timeout;

    return (...args) => {
        if (timeout) clearTimeout(timeout);
        timeout = setTimeout(() => func(...args), wait);
    };
}