node-gyp/node_modules/minimatch/node_modules/lru-cache
Nathan Rajlich 24bde139e1 Commit node_modules.
For @billywhizz :)

And cause it's just an all around good idea for command-line apps.
2012-02-10 23:44:09 -08:00
..
lib Commit node_modules. 2012-02-10 23:44:09 -08:00
test Commit node_modules. 2012-02-10 23:44:09 -08:00
.npmignore Commit node_modules. 2012-02-10 23:44:09 -08:00
LICENSE Commit node_modules. 2012-02-10 23:44:09 -08:00
package.json Commit node_modules. 2012-02-10 23:44:09 -08:00
README.md Commit node_modules. 2012-02-10 23:44:09 -08:00

lru cache

A cache object that deletes the least-recently-used items.

Usage:

var LRU = require("lru-cache")
  , cache = LRU(10) // max 10 items. default = Infinity
cache.set("key", "value")
cache.get("key") // "value"

RTFS for more info.