graphology-utils
Advanced tools
Comparing version 2.3.2 to 2.4.0
{ | ||
"name": "graphology-utils", | ||
"version": "2.3.2", | ||
"version": "2.4.0", | ||
"description": "Miscellaneous utils for graphology.", | ||
@@ -16,3 +16,2 @@ "main": "index.js", | ||
"is-graph-constructor.js", | ||
"memoized-for-each.js", | ||
"merge-clique.js", | ||
@@ -55,4 +54,4 @@ "merge-cycle.js", | ||
"peerDependencies": { | ||
"graphology-types": ">=0.20.0" | ||
"graphology-types": ">=0.23.0" | ||
} | ||
} |
@@ -31,3 +31,11 @@ /** | ||
graph.forEach(function (source, target, _sa, _ta, key, attr, undirected) { | ||
graph.forEachAssymetricAdjacencyEntry(function ( | ||
source, | ||
target, | ||
_sa, | ||
_ta, | ||
key, | ||
attr, | ||
undirected | ||
) { | ||
// Leveraging the ordered adjacency to save lookups | ||
@@ -34,0 +42,0 @@ if (source !== currentSource) { |
@@ -25,3 +25,3 @@ /** | ||
graph.forEach(function ( | ||
graph.forEachAssymetricAdjacencyEntry(function ( | ||
source, | ||
@@ -28,0 +28,0 @@ target, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23370
30
528