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.

11 lines 285 B
export const debounce = (func, waitFor) => { let timeout = null; const debounced = (...args) => { if (timeout !== null) { clearTimeout(timeout); } timeout = setTimeout(() => func(...args), waitFor); }; return debounced; }; //# sourceMappingURL=debounce.js.map