/opt/canhelp/node_modules/fastq
NameSizeModeActions
test/-0755rm
bench.js11950644editdlrm
eslint.config.js2440644editdlrm
example.js2380644editdlrm
example.mjs1990644editdlrm
index.d.ts37090644editdlrm
LICENSE7650644editdlrm
package.json13180644editdlrm
queue.js70140644editdlrm
README.md82150644editdlrm
SECURITY.md4550644editdlrm
Edit: /opt/canhelp/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) }