RockPaperScissors/node_modules/topo
2021-12-02 17:22:41 +01:00
..
lib Removed juusto rps (because I have one) 2021-12-02 17:22:41 +01:00
node_modules/hoek Removed juusto rps (because I have one) 2021-12-02 17:22:41 +01:00
LICENSE Removed juusto rps (because I have one) 2021-12-02 17:22:41 +01:00
package.json Removed juusto rps (because I have one) 2021-12-02 17:22:41 +01:00
README.md Removed juusto rps (because I have one) 2021-12-02 17:22:41 +01: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']