MCPcopy
hub / github.com/tdewolff/minify / createDependencyGraphItem

Function createDependencyGraphItem

_benchmarks/sample_echarts.js:15789–15798  ·  view source on GitHub ↗
(graph, name)

Source from the content-addressed store, hash-verified

15787 }
15788
15789 function createDependencyGraphItem(graph, name) {
15790 if (!graph[name]) {
15791 graph[name] = {
15792 predecessor: [],
15793 successor: []
15794 };
15795 }
15796
15797 return graph[name];
15798 }
15799
15800 function getAvailableDependencies(originalDeps, fullNameList) {
15801 var availableDeps = [];

Callers 1

makeDepndencyGraphFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…