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
- return result;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simple-graph-query",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "TypeScript evaluator for Forge expressions with browser-compatible UMD bundle",
5
5
  "main": "dist/simple-graph-query.bundle.js",
6
6
  "types": "dist/index.d.ts",