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
We want to be able to convert any Vec<numType> where numType is u8, u16, u32 etc to JS Uint8Array, Uint16Array etc. Right now we have a small change in a branch off of boa that allows us to convert a Vec<u8> into a JsObject that is a Uint8Array under the hood. It would be nice to upstream the change and have this work generally. There are some problems though as described here: boa-dev/boa#2058 (comment)
The text was updated successfully, but these errors were encountered:
We want to be able to convert any
Vec<numType>
wherenumType
isu8
,u16
,u32
etc to JSUint8Array
,Uint16Array
etc. Right now we have a small change in a branch off of boa that allows us to convert aVec<u8>
into a JsObject that is aUint8Array
under the hood. It would be nice to upstream the change and have this work generally. There are some problems though as described here: boa-dev/boa#2058 (comment)The text was updated successfully, but these errors were encountered: