You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 15 in src/blob.ts leaks memory: Module.HEAPU8.set(new Uint8Array(data), blobPtr);
Without new Uint8Array it works fine. I have just used Module.HEAPU8.set(data, blobPtr);.
I have found one issue:
Line 15 in src/blob.ts leaks memory:
Module.HEAPU8.set(new Uint8Array(data), blobPtr);Without
new Uint8Arrayit works fine. I have just usedModule.HEAPU8.set(data, blobPtr);.Great library. Thank You very much!