Searched refs:classOrObj (Results 1 – 1 of 1) sorted by relevance
38 module.exports.method = function (classOrObj, method, maxRunning) { argument39 if (typeof classOrObj === 'function') {40 const func = classOrObj.prototype[method]41 classOrObj.prototype[method] = limit(func, maxRunning) class43 const func = classOrObj[method]44 classOrObj[method] = limit(func, maxRunning)91 module.exports.promise.method = function (classOrObj, method, maxRunning) { argument92 if (typeof classOrObj === 'function') {93 const func = classOrObj.prototype[method]94 classOrObj.prototype[method] = limit.promise(func, maxRunning)[all …]