-
Notifications
You must be signed in to change notification settings - Fork 25
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
fix: replace node buffers with uint8arrays #14
Conversation
All internal use of buffers have been replaced with Uint8Arrays and DataViews. BREAKING CHANGE: - Byte arrays returned from this module will now be UintArrays and not Node Buffers
The switch to aegir is causing mac and windows builds to fail because it can't run the browser tests. Need to update the travis file to specifically test browsers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@achingbrain I might be missing something, but I find it strange that decode / encode functions take both buffer
(which I think is Uint8Array
now) and dataView
arguments. It appeals to me that it would be better to just have a dataView
argument.
It is also worth considering that dataView
passed may not be a view for the same buffer, which code seems to assume but does not verify that is the case.
I'll leave it up to you to decide what to do here.
Yeah, it looks a bit weird - I may have missed something in the API, but I couldn't see how to get a Uint8Array out of a DataView without creating a new instance from the internal ArrayBuffer. The structure of the module is that it uses the Node's Buffer API combines DataView-style multiple number type getter/setters with the byte-array semantics of Uint8Arrays but the browser API doesn't but we need both, so we create a DataView at the start of an encode/decode and pass the Uint8Array and the DataView and each encode/decode function can choose which one to use.
I guess you could pass a DataView instance to the top-level |
All internal use of node
Buffer
s have been replaced with browser-friendlyUint8Array
s andDataViews
.Also refactors test suite to run on browsers.
BREAKING CHANGE: