Socket
Book a DemoInstallSign in
Socket

@fmtk/graph

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fmtk/graph

Library for graph structures

latest
Source
npmnpm
Version
0.2.1
Version published
Weekly downloads
1
Maintainers
2
Weekly downloads
 
Created
Source

@fmtk/graph

This library includes some functions for working with graph structures.

Basics

A graph is represented by a Map<T, T[]> – i.e. a map that has a key for each vertex, with the value being an array of children. Note that leaf nodes will be present with an empty array of children.

A graph can also be represented by a list of edges ([T, T][]). Each element in the array is a 2-element array with the source as the first element and the target as the second.

Functions

fromEdges

Build a Map<T, T[]> from a list of edges ([T, T][]).

function fromEdges<T>(edges: [T, T][]): Map<T, T[]>;

fromNodes

Build a Map<T, T[]> from an existing arbitrary graph structure.

function fromNodes<T>(root: T, getChildren: (node: T) => T[]): Map<T, T[]>;

getLeaves

Get an array of leaf nodes (nodes with no children) from the given graph.

function getLeaves<T>(graph: Map<T, T[]>): T[];

hasCycles

Returns true if the graph contains a cycle reachable from the given node.

function hasCycles<T>(graph: Map<T, T[]>, from: T): boolean;

toEdges

Build a list of edges ([T, T][]) from a graph map (Map<T, T[]>).

function toEdges<T>(graph: Map<T, T[]>): [T, T][];

topologicalSort

Build a list of all nodes, sorted in an order such that for any given node, all nodes which point to that node come first in the list.

function topologicalSort<T>(graph: Map<T, T[]>): T[];

FAQs

Package last updated on 01 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts