-
Notifications
You must be signed in to change notification settings - Fork 33
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
buf[i] not working sometimes #22
Comments
@substack might be interested to see this. |
I've found that an implementation of a streaming Boyer-Moore-Horspool search |
@terinjokes for what it's worth, I think I got around the issue by using https://github.com/chrisdickinson/bops but even then there was an issue I had to work around: chrisdickinson/bops#7 |
This actually looks fixed in HEAD, but hasn't been pulled into a newer version of |
Causing zlib-browserify to be broken: brianloveswords/zlib-browserify#6
To produce the issue:
browserify test.js >out.js
debugger
statement like this:You will notice that
l
is aBuffer
andl[0]
is yieldingundefined
when it should yield 31. Note also thatl.parent[0]
works.The text was updated successfully, but these errors were encountered: