Appearance
function throttle(fn: Function, delay: number) { let timer: any = null; return function () { if (timer) return; timer = setTimeout(() => { fn(); timer = null; }, delay); }; }