3.0.0-r.1 • Published 6 years ago

@tleef/topo v3.0.0-r.1

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
6 years ago

topo

Topological sorting with grouping support.

npm (scoped) Travis (.org) branch Coveralls github branch

Lead Maintainer: Devin Ivy

Usage

See the API Reference

Example

const Topo = require('topo');

const morning = new Topo();

morning.add('Nap', { after: ['breakfast', 'prep'] });

morning.add([
    'Make toast',
    'Pour juice'
], { before: 'breakfast', group: 'prep' });

morning.add('Eat breakfast', { group: 'breakfast' });

morning.nodes;        // ['Make toast', 'Pour juice', 'Eat breakfast', 'Nap']