Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
fastq
/
example.js
blob: 665fdc8412e53ca788fb996af7b0eb6a70da94fb [
file
] [
log
] [
blame
]
'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
)
}