@reown/walletkit 1.1.2-canary-ca-4 → 1.1.2-canary-ca-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/dist/index.cjs.js +3 -6
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -609,12 +609,9 @@ ${e.stack}` : e.toString();
|
|
|
609
609
|
throw e;
|
|
610
610
|
}
|
|
611
611
|
}
|
|
612
|
-
const cachedTextDecoder =
|
|
613
|
-
|
|
614
|
-
}
|
|
615
|
-
if (typeof TextDecoder !== "undefined") {
|
|
616
|
-
cachedTextDecoder.decode();
|
|
617
|
-
}
|
|
612
|
+
const cachedTextDecoder = () => {
|
|
613
|
+
return { decode: (args) => { console.error("TextDecoder", args); } };
|
|
614
|
+
};
|
|
618
615
|
function getStringFromWasm0(ptr, len) {
|
|
619
616
|
ptr = ptr >>> 0;
|
|
620
617
|
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
package/package.json
CHANGED