-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ArrayBuffer returned from a module, not an instanceof ArrayBuffer. #702
Comments
I'm blocked by a similar issue. |
|
arr instanceof global.ArrayBuffer is 'true' |
Hello, this is expected. For the reason and workaround, please see #716 . |
And this issue is duplicate with #716 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An ArrayBuffer returned from a module, is no longer an instanceof ArrayBuffer, consequently any view (Uint8Array,Int8Array... etc.) created from it is zero sized.
code example: https://gist.github.com/mnaamani/5540054
The text was updated successfully, but these errors were encountered: