array-splice
v0.1.1
Published
A splice method for arrays that doesn't require adding each element individually
Downloads
4
Readme
array-splice
Javascript's Array.splice() method is fucking useless.
Usage: var parent = [1,2,99,5,6] var splice = [3,4] var removed = array-splice.splice(parent,2,1,splice)
Now: parent = [1,2,3,4,5,6] removed = [99]