Tumortisch-Dist/resources/app/node_modules/topo
2021-06-15 16:00:08 +02:00
..
lib project files added 2021-06-15 16:00:08 +02:00
node_modules/hoek project files added 2021-06-15 16:00:08 +02:00
LICENSE project files added 2021-06-15 16:00:08 +02:00
package.json project files added 2021-06-15 16:00:08 +02:00
README.md project files added 2021-06-15 16:00:08 +02:00

topo

Topological sorting with grouping support.

Build Status

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']