lru-cache
Advanced tools
Comparing version 2.6.4 to 2.6.5
{ | ||
"name": "lru-cache", | ||
"description": "A cache object that deletes the least-recently-used items.", | ||
"version": "2.6.4", | ||
"version": "2.6.5", | ||
"author": "Isaac Z. Schlueter <i@izs.me>", | ||
@@ -17,3 +17,3 @@ "keywords": [ | ||
"devDependencies": { | ||
"tap": "^0.7.1", | ||
"tap": "^1.2.0", | ||
"weak": "" | ||
@@ -20,0 +20,0 @@ }, |
@@ -57,3 +57,3 @@ # lru cache | ||
* `set(key, value, max)` | ||
* `set(key, value, maxAge)` | ||
* `get(key) => value` | ||
@@ -60,0 +60,0 @@ |
@@ -111,3 +111,2 @@ var test = require('tap').test | ||
t.equal(i, order.length); | ||
t.end() | ||
@@ -114,0 +113,0 @@ setTimeout(function () { |
#!/usr/bin/env node --expose_gc | ||
var weak = require('weak'); | ||
@@ -4,0 +5,0 @@ var test = require('tap').test |
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
23729
10
707