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
Repro motivated by NodeJS docs:
const buf1 = Buffer.allocUnsafe(26); const buf2 = Buffer.allocUnsafe(26).fill('!'.charCodeAt(0)); for (let i = 0; i < 26; i++) buf1[i] = i + 97; buf1.copy(buf2, 8, 16, 20); console.log(buf2[9]);
Node prints 114, Bun prints 118
114
118
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Repro motivated by NodeJS docs:
Node prints
114
, Bun prints118
The text was updated successfully, but these errors were encountered: