Irina Glushko 2389e7160b HW1 done 3 лет назад
..
lib 2389e7160b HW1 done 3 лет назад
CHANGELOG.md 2389e7160b HW1 done 3 лет назад
LICENSE.md 2389e7160b HW1 done 3 лет назад
README.md 2389e7160b HW1 done 3 лет назад
package.json 2389e7160b HW1 done 3 лет назад

README.md

@hapi/topo

Topological sorting with grouping support.

Build Status

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