UNPKG

@react-navigation/native-stack

Version:
12 lines (11 loc) 254 B
"use strict"; export function debounce(func, duration) { let timeout; return function (...args) { clearTimeout(timeout); timeout = setTimeout(() => { func.apply(this, args); }, duration); }; } //# sourceMappingURL=debounce.js.map