LAPTOP-UBJMM5MG\user d7428fd373 更新 1 年之前
..
lib d7428fd373 更新 1 年之前
CHANGELOG.md d7428fd373 更新 1 年之前
LICENSE.md d7428fd373 更新 1 年之前
README.md d7428fd373 更新 1 年之前
package.json d7428fd373 更新 1 年之前

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