UNPKG
another-linked-list
Version:
latest (1.0.1)
1.0.1
1.0.0
Linked list in JavaScript
github.com/ahadb/linked-list
ahadb/linked-list
another-linked-list
/
src
/
project
/
index.mjs
6 lines
(4 loc)
•
123 B
JavaScript
View Raw
1
2
3
4
5
6
import
LinkedList
from
'another-linked-list'
const
myList =
new
LinkedList
() myList.
append
( {
a
:
1
} );
console
.
log
(myList)