UNPKG

@typed/content-hash

Version:

Content hash a directory of HTML/JS/CSS files and other static assets

6 lines (4 loc) 189 B
import { createDiGraph, DiGraph, Edge } from './DiGraph' export function addEdge<A>(edge: Edge<A>, graph: DiGraph<A>): DiGraph<A> { return createDiGraph([...graph.edges, edge], graph) }