summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/fastq/example.mjs
blob: 81be789a083afaec1d139e6d7528f94fe27bc893 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { promise as queueAsPromised } from './queue.js'

/* eslint-disable */

const queue = queueAsPromised(worker, 1)

console.log('the result is', await queue.push(42))

async function worker (arg) {
  return 42 * 2
}