timeout-flow
Version:
Fluent, composable, pauseable JavaScript timers and time control flows — plus RAF utilities for frame-based logic.
24 lines (16 loc) • 461 B
JavaScript
// ./src/index.js
export { parseDuration } from './parseDuration.js';
export { flow } from './TimeoutFlow.js';
export { throttle } from './throttle.js';
export { debounce } from './debounce.js';
export { after } from './after.js';
export { every } from './every.js';
export { waitFor } from './waitFor.js';
export { retry } from './retry.js';
export {
afterRaf,
everyRaf,
debounceRaf,
throttleRaf,
waitForRaf
} from './raf/index.js';