Your IP : 216.73.216.52


Current Path : /proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/fastq/
Upload File :
Current File : //proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/fastq/example.mjs

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
}