Sign in
chromium
/
devtools
/
devtools-frontend
/
c40b51a7fcf20ce04022a0f5cbfc957ee9e1aaed
/
.
/
node_modules
/
fastq
/
example.js
blob: 4f834c414d9ce3a5e88651fa289cc92e6a8c412f [
file
] [
log
] [
blame
]
'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
)
}