buffer-split
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/buffer-split package

1.0.0 • Public • Published

Build Status

buffer-split

split a buffer by another buffer. think String.split()

 
var bsplit = require('buffer-split')
, b = new Buffer("this is a buffer i like to split")
, delim = new Buffer('buffer')
, result = bsplit(b,delim)
;
 
result.length === 2
 
result[0].toString() === "this is a "
 
result[1].toString() === " i like to split"
 
 

you may include the delimiter in the result by passing a thrthy value as the third arg. its more efficient if you need it.

var bsplit = require('buffer-split')
, b = new Buffer("this is a buffer i like to split")
, delim = new Buffer('buffer')
, result = bsplit(b,delim,true)
;
 
result[0].toString() === "this is a buffer"
 
result[1].toString() === " i like to split"
 
 

Package Sidebar

Install

npm i buffer-split

Weekly Downloads

4,582

Version

1.0.0

License

none

Last publish

Collaborators

  • soldair
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy