UNPKG

@react-navigation/stack

Version:

Stack navigator component for iOS and Android with animated transitions and gestures

14 lines (13 loc) 293 B
"use strict"; export function throttle(func, duration) { let timeout; return function (...args) { if (timeout == null) { func.apply(this, args); timeout = setTimeout(() => { timeout = undefined; }, duration); } }; } //# sourceMappingURL=throttle.js.map