UNPKG

react-native-google-mobile-ads

Version:

React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.

16 lines (13 loc) 409 B
export const debounce = <Arguments extends unknown[]>( func: (...args: Arguments) => unknown, waitFor: number, ): ((...args: Arguments) => void) => { let timeout: ReturnType<typeof setTimeout> | null = null; const debounced = (...args: Arguments) => { if (timeout !== null) { clearTimeout(timeout); } timeout = setTimeout(() => func(...args), waitFor); }; return debounced; };