Comparing version 3.0.0 to 3.0.1
@@ -8,3 +8,3 @@ /** | ||
* @link https://github.com/avoidwork/tiny-lru | ||
* @version 3.0.0 | ||
* @version 3.0.1 | ||
*/ | ||
@@ -68,3 +68,3 @@ "use strict"; | ||
if (item.expiry === -1 || item.expiry <= Date.now()) { | ||
if (item.expiry === -1 || item.expiry > Date.now()) { | ||
output = item.value; | ||
@@ -71,0 +71,0 @@ |
{ | ||
"name": "tiny-lru", | ||
"description": "Tiny LRU cache for Client or Server", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"homepage": "https://github.com/avoidwork/tiny-lru", | ||
@@ -6,0 +6,0 @@ "author": "Jason Mulligan <jason.mulligan@avoidwork.com>", |
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
9979