UNPKG

timeout-flow

Version:

Fluent, composable, pauseable JavaScript timers and time control flows — plus RAF utilities for frame-based logic.

19 lines (11 loc) 418 B
// ./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'; // Add this line: export * from './raf/index.js';