chore(helpers) change default debounce wait to 0

This commit is contained in:
Cam Wiegert
2018-01-26 09:53:26 -06:00
parent 7c19bc17a1
commit 9d5b907bf6

View File

@ -291,7 +291,7 @@ export function domControllerAsync(domControllerFunction: Function, callback?: F
});
}
export function debounce(func: Function, wait = 250) {
export function debounce(func: Function, wait = 0) {
let timer: number;
return (...args: any[]): void => {
clearTimeout(timer);