buffer-helpers
v0.0.2
Published
Helper functions for Buffer. Primarily to extract subsets of text.
Downloads
408
Readme
Node Buffer helper functions
Install
npm install buffer-helpers
Usage
require('bufferHelpers');
Helper functions will be loaded onto Buffer.prototype
- isEqualTo(buf) - compares calling buffer to buf and returns true if they are equal
- extractSubsets(startDelim, endDelim) - returns an array of Buffers containing all of the occurences between startDelim and endDelim
- extractSubsetsRecursive(startDelim, endDelim) - a recursive version
License
MIT http://opensource.org/licenses/mit-license.php