summaryrefslogtreecommitdiffstats
path: root/node_modules/fastq/example.js
blob: 4f834c414d9ce3a5e88651fa289cc92e6a8c412f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'

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)
}