blob: 4f834c414d9ce3a5e88651fa289cc92e6a8c412f [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict'
2
3var queue = require('./')(worker, 1)
4
5queue.push(42, function (err, result) {
6 if (err) { throw err }
7 console.log('the result is', result)
8})
9
10function worker (arg, cb) {
11 cb(null, 42 * 2)
12}