Permalink
Cannot retrieve contributors at this time
58 lines (47 sloc)
931 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/fastq/bench.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
var max = 1000000 | |
var fastqueue = require('./')(worker, 1) | |
var async = require('async') | |
var neo = require('neo-async') | |
var asyncqueue = async.queue(worker, 1) | |
var neoqueue = neo.queue(worker, 1) | |
function bench (func, done) { | |
var key = max + '*' + func.name | |
var count = -1 | |
console.time(key) | |
end() | |
function end () { | |
if (++count < max) { | |
func(end) | |
} else { | |
console.timeEnd(key) | |
if (done) { | |
done() | |
} | |
} | |
} | |
} | |
function benchFastQ (done) { | |
fastqueue.push(42, done) | |
} | |
function benchAsyncQueue (done) { | |
asyncqueue.push(42, done) | |
} | |
function benchNeoQueue (done) { | |
neoqueue.push(42, done) | |
} | |
function worker (arg, cb) { | |
setImmediate(cb) | |
} | |
function benchSetImmediate (cb) { | |
worker(42, cb) | |
} | |
function runBench (done) { | |
async.eachSeries([ | |
benchSetImmediate, | |
benchFastQ, | |
benchNeoQueue, | |
benchAsyncQueue | |
], bench, done) | |
} | |
runBench(runBench) |