react-native-google-mobile-ads
Version:
React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.
18 lines (17 loc) • 414 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.debounce = void 0;
const debounce = (func, waitFor) => {
let timeout = null;
const debounced = (...args) => {
if (timeout !== null) {
clearTimeout(timeout);
}
timeout = setTimeout(() => func(...args), waitFor);
};
return debounced;
};
exports.debounce = debounce;
//# sourceMappingURL=debounce.js.map
;