UNPKG

@md-anas-sabah/async-task-runner

Version:

Powerful async task runner for Node.js with concurrency control, smart retries, timeouts & comprehensive reporting. Perfect for web scraping, API processing, file operations & bulk async operations.

8 lines 214 B
export class TimeoutError extends Error { constructor(message, duration) { super(message); this.duration = duration; this.name = 'TimeoutError'; } } //# sourceMappingURL=types.js.map