![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | test/ | 2 years ago | - | |
![]() | LICENSE | 2 years ago | 1.0K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | README.md | 2 years ago | 729 | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | bm.js | 2 years ago | 1.1K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | index.js | 2 years ago | 1.5K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
![]() | package.json | 2 years ago | 1.3K | 0fb859dc fixed mobile overflwo options [كارل مبارك] |
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