LRU Cache This is a (L)east (R)ecently (U)sed cache implementation. I made it for fun and to display various JavaScript coding techniques. Implementation This implementation uses a doubly-linked list for the entries. API // TODO