1.0.1 • Published 8 years ago

array-append-x v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

array-append-x

What

Append an element for every X element in an array.

Installation

$ npm install --save array-append-x

Usage

var arrayAppendX = require('array-append-x');
var num = [0, 0, 0, 0, 0, 0, 0];

console.log(arrayAppendX(num, 1, 4));

// Output:
[0, 0, 0, 1, 0, 0, 0, 1, 0]

Test

npm test

Contribution

Contributions are appreciated.

License

MIT-licensed. See LICENSE.