example.mjs 199 B

12345678910
  1. import { promise as queueAsPromised } from './queue.js'
  2. const queue = queueAsPromised(worker, 1)
  3. console.log('the result is', await queue.push(42))
  4. async function worker (arg) {
  5. return 42 * 2
  6. }