UNPKG
@opensnip/cachejs
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Fast and lightweight caching library for javascript
github.com/opensnip/cachejs
opensnip/cachejs
@opensnip/cachejs
/
src
/
linkedlist
/
node.mjs
8 lines
(7 loc)
•
125 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export default
class
Node
{
constructor
(value) {
this
.prev =
null
;
this
.next =
null
;
this
.value = value; } }