Server IP : 162.213.251.212 / Your IP : 3.17.183.216 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/needapair.com/node_modules/mongoose/lib/helpers/ |
Upload File : |
'use strict'; module.exports = parallelLimit; /*! * ignore */ function parallelLimit(fns, limit, callback) { let numInProgress = 0; let numFinished = 0; let error = null; if (limit <= 0) { throw new Error('Limit must be positive'); } if (fns.length === 0) { return callback(null, []); } for (let i = 0; i < fns.length && i < limit; ++i) { _start(); } function _start() { fns[numFinished + numInProgress](_done(numFinished + numInProgress)); ++numInProgress; } const results = []; function _done(index) { return (err, res) => { --numInProgress; ++numFinished; if (error != null) { return; } if (err != null) { error = err; return callback(error); } results[index] = res; if (numFinished === fns.length) { return callback(null, results); } else if (numFinished + numInProgress < fns.length) { _start(); } }; } }