chensenlai 10988628a0 语音房项目初始化 5 anos atrás
..
lib 10988628a0 语音房项目初始化 5 anos atrás
node_modules 10988628a0 语音房项目初始化 5 anos atrás
.npmignore 10988628a0 语音房项目初始化 5 anos atrás
README.md 10988628a0 语音房项目初始化 5 anos atrás
package.json 10988628a0 语音房项目初始化 5 anos atrás

README.md

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