@thi.ng/wasm-api 1.4.35 → 1.4.37

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-12-03T12:13:32Z
3
+ - **Last updated**: 2023-12-11T10:07:09Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -391,7 +391,7 @@ For Node.js REPL:
391
391
  const wasmApi = await import("@thi.ng/wasm-api");
392
392
  ```
393
393
 
394
- Package sizes (brotli'd, pre-treeshake): ESM: 2.65 KB
394
+ Package sizes (brotli'd, pre-treeshake): ESM: 2.69 KB
395
395
 
396
396
  ## Dependencies
397
397
 
package/api.js CHANGED
@@ -1,2 +1,6 @@
1
- export const EVENT_MEMORY_CHANGED = "memory-changed";
2
- export const EVENT_PANIC = "panic";
1
+ const EVENT_MEMORY_CHANGED = "memory-changed";
2
+ const EVENT_PANIC = "panic";
3
+ export {
4
+ EVENT_MEMORY_CHANGED,
5
+ EVENT_PANIC
6
+ };