@dra2020/baseclient 1.0.45 → 1.0.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/lib/poly/topo.ts CHANGED
@@ -184,7 +184,7 @@ function misMatchObject(o1: any, o2: any): boolean
184
184
  return (o1.type === 'MultiPolygon') ? misMatchMulti(o1.arcs, o2.arcs) : misMatchPoly(o1.arcs, o2.arcs);
185
185
  }
186
186
 
187
- const MAX_TRIES = 25;
187
+ const MAX_TRIES = 30;
188
188
 
189
189
  function bigTimeString(ms: number): string
190
190
  {
@@ -221,7 +221,7 @@ const DefaultSimplifyOptions: SimplifyOptions = { minArea: 500 };
221
221
 
222
222
  function log(s: string): void
223
223
  {
224
- //console.log(s);
224
+ console.log(s);
225
225
  }
226
226
 
227
227
  //
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/baseclient",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "description": "Utility functions for Javascript projects.",
5
5
  "main": "dist/baseclient.js",
6
6
  "types": "./dist/all/all.d.ts",