geo-polygonize 0.11.0 → 0.12.1

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.
@@ -427,6 +427,13 @@ class WasmPolygonResult {
427
427
  const ret = wasm.wasmpolygonresult_coords_ptr(this.__wbg_ptr);
428
428
  return ret >>> 0;
429
429
  }
430
+ /**
431
+ * @returns {any}
432
+ */
433
+ provenance() {
434
+ const ret = wasm.wasmpolygonresult_provenance(this.__wbg_ptr);
435
+ return ret;
436
+ }
430
437
  /**
431
438
  * @returns {number}
432
439
  */
@@ -818,6 +825,14 @@ function __wbg_get_imports() {
818
825
  const ret = arg0.length;
819
826
  return ret;
820
827
  };
828
+ imports.wbg.__wbg_new_1ba21ce319a06297 = function() {
829
+ const ret = new Object();
830
+ return ret;
831
+ };
832
+ imports.wbg.__wbg_new_25f239778d6112b9 = function() {
833
+ const ret = new Array();
834
+ return ret;
835
+ };
821
836
  imports.wbg.__wbg_new_6421f6084cc5bc5a = function(arg0) {
822
837
  const ret = new Uint8Array(arg0);
823
838
  return ret;
@@ -837,6 +852,12 @@ function __wbg_get_imports() {
837
852
  imports.wbg.__wbg_prototypesetcall_dfe9b766cdc1f1fd = function(arg0, arg1, arg2) {
838
853
  Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
839
854
  };
855
+ imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
856
+ arg0[arg1] = arg2;
857
+ };
858
+ imports.wbg.__wbg_set_7df433eea03a5c14 = function(arg0, arg1, arg2) {
859
+ arg0[arg1 >>> 0] = arg2;
860
+ };
840
861
  imports.wbg.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
841
862
  const ret = arg1.stack;
842
863
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
@@ -869,6 +890,11 @@ function __wbg_get_imports() {
869
890
  const ret = getStringFromWasm0(arg0, arg1);
870
891
  return ret;
871
892
  };
893
+ imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
894
+ // Cast intrinsic for `F64 -> Externref`.
895
+ const ret = arg0;
896
+ return ret;
897
+ };
872
898
  imports.wbg.__wbindgen_init_externref_table = function() {
873
899
  const table = wasm.__wbindgen_externrefs;
874
900
  const offset = table.grow(4);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geo-polygonize",
3
- "version": "0.11.0",
3
+ "version": "0.12.1",
4
4
  "description": "A native Rust port of the JTS/GEOS polygonization algorithm (Wasm)",
5
5
  "type": "module",
6
6
  "scripts": {