@dra2020/baseclient 1.0.168 → 1.0.169

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/lib/geo/geo.ts CHANGED
@@ -594,9 +594,6 @@ export class GeoMultiCollection
594
594
  {
595
595
  // New style, use splice on packed topologies
596
596
  let filterout = this.someHidden() ? this.hidden : null; // splice function requires NULL for empty
597
- // DEBUGGING
598
- filterout = null;
599
- // DEBUGGING
600
597
  let topoarray = Object.values(this.entries).filter((e: GeoEntry) => this._length(e) > 0)
601
598
  .map((e: GeoEntry) => { return { topology: this._topo(e), filterout } });
602
599
  this.all.topo = topoarray.length == 0 ? null : topoarray.length == 1 ? topoarray[0].topology : Poly.topoSplice(topoarray);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/baseclient",
3
- "version": "1.0.168",
3
+ "version": "1.0.169",
4
4
  "description": "Utility functions for Javascript projects.",
5
5
  "main": "dist/baseclient.js",
6
6
  "types": "./dist/all/all.d.ts",