unordered-array-remove
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/unordered-array-remove package

1.0.2 • Public • Published

unordered-array-remove

Efficiently remove an element from an unordered array without doing a splice

npm install unordered-array-remove

build status

Usage

var remove = require('unordered-array-remove')
 
var list = ['a', 'b', 'c', 'd', 'e']
remove(list, 2) // remove 'c'
console.log(list) // returns ['a', 'b', 'e', 'd'] (no 'c')

This works by popping the last element (which is fast because it doesn't need shift all array elements) and overwriting the removed index with this element.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i unordered-array-remove

Weekly Downloads

6,736

Version

1.0.2

License

MIT

Last publish

Collaborators

  • mafintosh