/home/techb158/balavpn.abdallabala.com/node_modules/fastq
NameSizeModeActions
test/-0777rm
bench.js11950666editdlrm
eslint.config.js2440666editdlrm
example.js2380666editdlrm
example.mjs1990666editdlrm
index.d.ts37090666editdlrm
LICENSE7650666editdlrm
package.json13180666editdlrm
queue.js70140666editdlrm
README.md82150666editdlrm
SECURITY.md4550666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/fastq/example.js (238B)
'use strict' /* eslint-disable no-var */ var queue = require('./')(worker, 1) queue.push(42, function (err, result) { if (err) { throw err } console.log('the result is', result) }) function worker (arg, cb) { cb(null, 42 * 2) }