Comparing version 1.0.31 to 1.0.32
{ | ||
"name": "yow", | ||
"version": "1.0.31", | ||
"version": "1.0.32", | ||
"description": "You Only Wish module", | ||
@@ -5,0 +5,0 @@ "main": "yow.js", |
11
queue.js
@@ -55,3 +55,14 @@ | ||
this.prequeue = function(promise) { | ||
if (_queue.length > _limit) { | ||
console.log('Queue too big! Truncating.'); | ||
_this.clear(); | ||
} | ||
_queue.unshift(promise); | ||
} | ||
this.enqueue = function(promise) { | ||
@@ -58,0 +69,0 @@ |
@@ -11,3 +11,3 @@ | ||
console.log(text); | ||
resolve(); | ||
setTimeout(resolve, 2000); | ||
}); | ||
@@ -14,0 +14,0 @@ } |
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
17325
478