@iyulab/u-nesting 0.3.0 → 0.3.2

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "iyulab"
6
6
  ],
7
7
  "description": "WebAssembly bindings for U-Nesting spatial optimization engine",
8
- "version": "0.3.0",
8
+ "version": "0.3.2",
9
9
  "license": "MIT",
10
10
  "repository": {
11
11
  "type": "git",
package/u_nesting_wasm.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /* @ts-self-types="./u_nesting_wasm.d.ts" */
2
-
3
2
  import * as wasm from "./u_nesting_wasm_bg.wasm";
4
3
  import { __wbg_set_wasm } from "./u_nesting_wasm_bg.js";
4
+
5
5
  __wbg_set_wasm(wasm);
6
6
 
7
7
  export {
@@ -158,8 +158,7 @@ function getDataViewMemory0() {
158
158
  }
159
159
 
160
160
  function getStringFromWasm0(ptr, len) {
161
- ptr = ptr >>> 0;
162
- return decodeText(ptr, len);
161
+ return decodeText(ptr >>> 0, len);
163
162
  }
164
163
 
165
164
  let cachedUint8ArrayMemory0 = null;
Binary file