PIbd-21_Danilov_V.V._Intern.../Lab4/node_modules/fastq/example.mjs

12 lines
221 B
JavaScript
Raw Permalink Normal View History

2024-01-09 05:30:48 +04:00
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
}