mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-22 08:14:48 -06:00
fa9ae9437c
The gitbook install has been incredibly flaky due to it's dependency on npm. This commit simply vendors the node_modules so that each time we build the site the process doesn't have to re-run gitbook install. Signed-off-by: Torin Sandall <torinsandall@gmail.com>
26 lines
673 B
JavaScript
26 lines
673 B
JavaScript
var parallel = require('../parallel.js');
|
|
|
|
// API
|
|
module.exports = ReadableParallel;
|
|
|
|
/**
|
|
* Streaming wrapper to `asynckit.parallel`
|
|
*
|
|
* @param {array|object} list - array or object (named list) to iterate over
|
|
* @param {function} iterator - iterator to run
|
|
* @param {function} callback - invoked when all elements processed
|
|
* @returns {stream.Readable#}
|
|
*/
|
|
function ReadableParallel(list, iterator, callback)
|
|
{
|
|
if (!(this instanceof ReadableParallel))
|
|
{
|
|
return new ReadableParallel(list, iterator, callback);
|
|
}
|
|
|
|
// turn on object mode
|
|
ReadableParallel.super_.call(this, {objectMode: true});
|
|
|
|
this._start(parallel, list, iterator, callback);
|
|
}
|