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
In valueToKey, when you convert from Uint8Array or other data view (tested by ArrayBuffer.isView), the code currently returns new Uint8Array(input.buffer).buffer. This disregards the byteOffset and byteLength, which might only reference a slice of the underlying ArrayBuffer.
The text was updated successfully, but these errors were encountered:
In
valueToKey
, when you convert fromUint8Array
or other data view (tested byArrayBuffer.isView
), the code currently returnsnew Uint8Array(input.buffer).buffer
. This disregards thebyteOffset
andbyteLength
, which might only reference a slice of the underlying ArrayBuffer.The text was updated successfully, but these errors were encountered: