Skip to content

Commit

Permalink
tabs to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed May 21, 2010
1 parent 4de20ef commit 496f506
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -4,9 +4,9 @@ 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.put("key", "value")
cache.get("key") // "value"
var LRU = require("lru-cache")
, cache = LRU(10) // max 10 items. default = Infinity
cache.put("key", "value")
cache.get("key") // "value"

RTFS for more info.

0 comments on commit 496f506

Please sign in to comment.