steelbreeze/graph

View on GitHub
src/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @module graph
 * 
 * A small library of graph algorithms.
 * 
 * @copyright (c) 2017-8 David Mesquita-Morris
 * 
 * Licensed under the MIT licence
 */

// pull in the tree algorithms
export { Tree } from "./tree";

// sorting methods
export { Sort } from "./sort";