Sign in
chromium
/
devtools
/
devtools-frontend
/
4f035ae08081a9e198fbe79af824c5d08376fa72
/
.
/
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
)
}