UNPKG
algorz
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Data Structures & Algorithms for Javascript
github.com/jalalazimi/algorz
jalalazimi/algorz
algorz
/
src
/
index.js
13 lines
(11 loc)
•
236 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
default
as
List
}
from
'./list'
;
import
Stack
from
'./stack'
;
import
Queues
from
'./queues'
;
import
LList
from
'./linked-list'
;
import
Dictionary
from
'./dictionary'
;
export
default
{
Dictionary
,
LList
,
Queues
,
Stack
};