splice-buffer

1.0.0 • Public • Published

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

Package Sidebar

Install

npm i splice-buffer

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • kevva