UNPKG

@opensnip/cachejs

Version:

Fast and lightweight caching library for javascript

8 lines (7 loc) 125 B
export default class Node { constructor(value) { this.prev = null; this.next = null; this.value = value; } }