UNPKG

data-collection.js

Version:

Simple collection classes that can be used in JS/Node.

6 lines (5 loc) 281 B
const {LinkedList} = require('./lib/collection/LinkedList'); const {TreeList} = require('./lib/collection/TreeList'); const {TreeSet} = require('./lib/collection/TreeSet'); const {Graph} = require('./lib/collection/Graph'); module.exports = {LinkedList, TreeList, TreeSet, Graph};