HFBA / node_modules /fastq /example.mjs
Chunte's picture
Chunte HF staff
Upload 1033 files
d8f0e51 verified
raw
history blame
No virus
221 Bytes
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
}