Skip to content
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

lastIndexOf: fix byteOffset when encoding passed as second arg #369

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

arantes555
Copy link

Currently, buffer.lastIndexOf behaves differently than node's Buffer when encoding is passed as second argument.

To reproduce the issue :

> node -e "console.log(require('node:buffer').Buffer.from('abcdef').lastIndexOf('b', 'utf8'))"
1
> node -e "console.log(require('buffer/').Buffer.from('abcdef').lastIndexOf('b', 'utf8'))" 
-1

The problem comes from the fact that, in bidirectionalIndexOf, when typeof byteOffset === 'string, the code sets byteOffset = 0. This is perfectly fine for indexOf, but breaks lastIndexOf (as the correct value would be the end of the buffer).

This PR fixes this, by setting byteOffset = undefined instead (this is what NodeJS does : https://github.com/nodejs/node/blob/main/lib/buffer.js#L980 ). It also adds a test for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant