a simple lru cache
a simple lru cache
const SimpleCache = require('simple.cache')
SimpleCache(max)
max integer, default to 1000
const SimpleCache = require('simple.cache')
const myCache = SimpleCache()
myCache.set('foo', 123)
myCache.set('bar', 456)
myCache.get('bar')// returns 456
myCache.remove('foo')
myCache.size()// should return 1
myCache.clear()// both caches are reset
props to Dominic Tarr for the amazing LRU algorithm