UNPKG

puppeteer-core

Version:

A high-level API to control headless Chrome over the DevTools Protocol

17 lines (15 loc) 301 B
class TaskQueue { constructor() { this._chain = Promise.resolve(); } /** * @param {Function} task * @return {!Promise} */ postTask(task) { const result = this._chain.then(task); this._chain = result.catch(() => {}); return result; } } module.exports = {TaskQueue};