simple-graph-query 2.1.3 → 2.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -48599,7 +48599,8 @@ function dotJoin(left, right) {
|
|
|
48599
48599
|
if (result.some(tuple => tuple.length === 0)) {
|
|
48600
48600
|
throw new Error("Join would create a relation of arity 0");
|
|
48601
48601
|
}
|
|
48602
|
-
|
|
48602
|
+
// Deduplicate results to ensure set semantics
|
|
48603
|
+
return deduplicateTuples(result);
|
|
48603
48604
|
}
|
|
48604
48605
|
function bitwidthWraparound(value, bitwidth) {
|
|
48605
48606
|
const modulus = Math.pow(2, bitwidth); // total number of Int values
|
package/package.json
CHANGED