/ piacw.com / dev / final / node_modules / buffer-indexof /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]test/2 years ago -  
[   ]LICENSE2 years ago1.0K0fb859dc fixed mobile overflwo options [كارل مبارك]
[TXT]README.md2 years ago729 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]bm.js2 years ago1.1K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]index.js2 years ago1.5K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]package.json2 years ago1.3K0fb859dc fixed mobile overflwo options [كارل مبارك]
README.md

Build Status

buffer-indexof

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

CHANGELOG

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80