splice-buffer
v1.0.0
Published
Remove or replace part of a Buffer like Array#splice
Maintainers
Readme
splice-buffer 
Remove or replace part of a
BufferlikeArray#splice
Install
$ npm install splice-bufferUsage
const spliceBuffer = require('splice-buffer');
spliceBuffer('unicorn', 3, 4, 'verse');
//=> 'universe'API
spliceBuffer(input, index, count, [insert])
input
Type: Buffer
index
Type: number
Index to start splicing.
count
Type: number
Number of characters to remove.
insert
Type: string
String to insert in place of the removed Buffer.
License
MIT © Kevin Mårtensson
