es6-promise-pool
Advanced tools
Comparing version 2.1.1 to 2.2.0
@@ -188,4 +188,3 @@ /* global define */ | ||
var promise | ||
while (this._size < this._concurrency && | ||
!!(promise = this._producer.call(this))) { | ||
while (this._size < this._concurrency && (promise = this._producer())) { | ||
this._size++ | ||
@@ -192,0 +191,0 @@ this._trackPromise(promise) |
{ | ||
"name": "es6-promise-pool", | ||
"version": "2.1.1", | ||
"version": "2.2.0", | ||
"description": "Runs Promises in a pool that limits their maximum concurrency.", | ||
@@ -32,13 +32,13 @@ "author": { | ||
"devDependencies": { | ||
"chai": "^3.0.0", | ||
"chai-as-promised": "^5.0.0", | ||
"console-stamp": "^0.1.3", | ||
"coveralls": "^2.11.2", | ||
"es6-promise": "^2.0.1", | ||
"istanbul": "^0.3.5", | ||
"mocha": "^2.1.0", | ||
"chai": "^3.2.0", | ||
"chai-as-promised": "^5.1.0", | ||
"console-stamp": "^0.1.6", | ||
"coveralls": "^2.11.4", | ||
"es6-promise": "^3.0.2", | ||
"istanbul": "^0.3.17", | ||
"mocha": "^2.2.5", | ||
"mocha-lcov-reporter": "0.0.2", | ||
"mocha-phantomjs": "^3.5.2", | ||
"phantomjs": "^1.9.13", | ||
"standard": "^4.5.2" | ||
"mocha-phantomjs": "^3.6.0", | ||
"phantomjs": "1.9.7-15", | ||
"standard": "^5.1.0" | ||
}, | ||
@@ -45,0 +45,0 @@ "engines": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14371
183