Skip to content

Commit

Permalink
Updating tiny-lru & re-enabling it's test
Browse files Browse the repository at this point in the history
  • Loading branch information
avoidwork committed Jan 6, 2017
1 parent 4b43691 commit 954e28a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var algs = {
'modern-lru': function (n) { return new Modern(n) },
'lru-cache': LruCache,
'lru_cache': function (n) { return new LRU_Cache(n) },
// 'tiny-lru': tinyLRU,
'tiny-lru': tinyLRU,
'lru': LRU,
'simple-lru-cache': function (n) { return new Simple({maxSize: n}) },
'mkc': function (n) { return new MKC({max: n}) },
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"modern-lru": "^1.0.8",
"secondary-cache": "^1.2.1",
"simple-lru-cache": "0.0.2",
"tiny-lru": "^1.3.3",
"tiny-lru": "^1.4.1",
"tiny-lru-cache": "^1.0.1"
},
"devDependencies": {},
Expand Down

0 comments on commit 954e28a

Please sign in to comment.