1.0.0 • Published 9 years ago

array-removeat v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
9 years ago

array-removeAt Build Status

Removes an item from a specific position.

Install

$ npm install --save array-removeat

Usage

var removeAt = require('array-removeat');
removeAt([1, 2, 3], 1);
// => [1, 3]

API

removeAt(array, index)

Returns the modified array.

array

Type: array

The array to modify.

index

Type: index

Position where to modify the array.

License

MIT © Emil Johansson