Home Manual Reference Source

Overview

Installation

Can be managed using yarn, npm, or jspm.

yarn

yarn add @graph-algorithm/topological-sorting

npm

npm install @graph-algorithm/topological-sorting --save

jspm

jspm install npm:@graph-algorithm/topological-sorting

Usage

:warning: The code requires regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

First, require the polyfill at the entry point of your application

await import( 'regenerator-runtime/runtime.js' );
// or
import 'regenerator-runtime/runtime.js' ;

Then, import the library where needed

const topologicalSorting = await import( '@graph-algorithm/topological-sorting' ) ;
// or
import * as topologicalSorting from '@graph-algorithm/topological-sorting' ;

Examples

More examples in the test files.