@loro-dev/flock-wasm 0.1.3 → 0.1.5
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/README.md +1281 -6
- package/base64/flock_wasm.js +3 -3
- package/base64/index.js +1 -1
- package/base64/wasm.js +1 -1
- package/bundler/flock_wasm_bg.js +3 -3
- package/bundler/flock_wasm_bg.wasm +0 -0
- package/bundler/flock_wasm_bg.wasm.d.ts +1 -1
- package/bundler/index.js +1 -1
- package/nodejs/flock_wasm.js +3 -3
- package/nodejs/flock_wasm_bg.wasm +0 -0
- package/nodejs/flock_wasm_bg.wasm.d.ts +1 -1
- package/nodejs/index.js +1 -1
- package/package.json +1 -1
- package/web/flock_wasm.d.ts +1 -1
- package/web/flock_wasm.js +3 -3
- package/web/flock_wasm_bg.wasm +0 -0
- package/web/flock_wasm_bg.wasm.d.ts +1 -1
- package/web/index.js +1 -1
package/base64/flock_wasm.js
CHANGED
|
@@ -244,7 +244,7 @@ function passArray8ToWasm0(arg, malloc) {
|
|
|
244
244
|
return ptr;
|
|
245
245
|
}
|
|
246
246
|
function __wbg_adapter_56(arg0, arg1, arg2) {
|
|
247
|
-
wasm.
|
|
247
|
+
wasm.closure43_externref_shim(arg0, arg1, arg2);
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
const RawFlockFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
@@ -993,8 +993,8 @@ function __wbg_get_imports() {
|
|
|
993
993
|
const ret = false;
|
|
994
994
|
return ret;
|
|
995
995
|
};
|
|
996
|
-
imports.wbg.
|
|
997
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
996
|
+
imports.wbg.__wbindgen_closure_wrapper303 = function(arg0, arg1, arg2) {
|
|
997
|
+
const ret = makeMutClosure(arg0, arg1, 44, __wbg_adapter_56);
|
|
998
998
|
return ret;
|
|
999
999
|
};
|
|
1000
1000
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
package/base64/index.js
CHANGED