XuelesszzZ 94af2b8e7b 6-30-5 | hai 1 ano | |
---|---|---|
.. | ||
test | hai 1 ano | |
.travis.yml | hai 1 ano | |
LICENSE | hai 1 ano | |
README.md | hai 1 ano | |
bm.js | hai 1 ano | |
index.js | hai 1 ano | |
package.json | hai 1 ano |
find the index of a buffer in a buffer. should behave like String.indexOf etc.
var bindexOf = require('buffer-indexof');
var newLineBuffer = new Buffer("\n");
var b = new Buffer("hi\nho\nsilver");
bindexOf(b,newLineBuffer) === 2
// you can also start from index
bindexOf(b,newLineBuffer,3) === 5
// no match === -1
bindexOf(b,newLineBuffer,6) === -1