@gen3/core 0.10.44 → 0.10.46

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.
package/dist/cjs/index.js CHANGED
@@ -973,7 +973,7 @@ const HasEnoughData = (data, keys, limit)=>{
973
973
  to: toData
974
974
  }
975
975
  ];
976
- callback && callback();
976
+ if (callback) callback();
977
977
  return result;
978
978
  });
979
979
  }
@@ -1208,7 +1208,7 @@ const convertFilterSetToGqlFilter = (fs, toplevelOp = 'and')=>{
1208
1208
  this.handleGreaterThan = (op)=>op.operand;
1209
1209
  this.handleLessThan = (op)=>op.operand;
1210
1210
  this.handleLessThanOrEquals = (op)=>op.operand;
1211
- this.handleIntersection = (_)=>undefined;
1211
+ this.handleIntersection = (_arg)=>undefined;
1212
1212
  this.handleUnion = (_)=>undefined;
1213
1213
  this.handleNestedFilter = (_)=>undefined;
1214
1214
  }