cache-lib-4A small CommonJS LRU (least-recently-used) cache.constLRUCache=require('./index');constcache=newLRUCache(2);cache.set('a',1);