mirror of
https://github.com/bower/bower.git
synced 2026-02-12 06:55:04 -05:00
Minor CS fixes.
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
var Q = require('q');
|
||||
var mout = require('mout');
|
||||
|
||||
var Worker = function (defaultConcurrency, types) {
|
||||
function Worker(defaultConcurrency, types) {
|
||||
this._defaultConcurrency = typeof defaultConcurrency === 'number' ? defaultConcurrency : 10;
|
||||
|
||||
// Initialize some needed properties
|
||||
this._queue = {};
|
||||
this._slots = types || {};
|
||||
this._executing = [];
|
||||
};
|
||||
}
|
||||
|
||||
// -----------------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user