@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/dist/baseclient.js +0 -3
- package/dist/baseclient.js.map +1 -1
- package/lib/geo/geo.ts +0 -3
- package/package.json +1 -1
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);
|