splice-buffer
v1.0.0
Published
Remove or replace part of a Buffer like Array#splice
Downloads
2
Maintainers
Readme
splice-buffer
Remove or replace part of a
Buffer
likeArray#splice
Install
$ npm install splice-buffer
Usage
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