1.0.0 • Published 7 years ago

splice-buffer v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

splice-buffer Build Status

Remove or replace part of a Buffer like Array#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