We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The SheetJS bun test suite started failing due to a regression in Buffer#toString("binary"):
Buffer#toString("binary")
var x = Buffer.from("<?xm", "binary"); console.log(x); console.log(x.toString("binary"))
Node:
<Buffer 3c 3f 78 6d> <?xm
Bun 0.1.7:
Uint8Array(4) [ 60, 63, 120, 109 ] 㼼浸
The output matches the utf16le encoding in NodeJS.
utf16le
The last successful test run was 7 days ago, which could have been 0.1.5 or 0.1.6
The text was updated successfully, but these errors were encountered:
thanks for flagging
Sorry, something went wrong.
ed15259
No branches or pull requests
The SheetJS bun test suite started failing due to a regression in
Buffer#toString("binary")
:Node:
Bun 0.1.7:
The output matches the
utf16le
encoding in NodeJS.The last successful test run was 7 days ago, which could have been 0.1.5 or 0.1.6
The text was updated successfully, but these errors were encountered: