UNPKG

@react-navigation/native-stack

Version:
16 lines (15 loc) 341 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.debounce = debounce; function debounce(func, duration) { let timeout; return function (...args) { clearTimeout(timeout); timeout = setTimeout(() => { func.apply(this, args); }, duration); }; } //# sourceMappingURL=debounce.js.map