remove-from-array
remove an index from an array
npm install @amphibian/remove-from-array
var removeFromArray = require('@amphibian/remove-from-array');
var mammals = ['cat', 'bird', 'dog', 'horse', 'fish'];
removeFromArray('fish', mammals);
removeFromArray('bird', mammals);
console.log(mammals); // > ['cat', 'dog', 'horse']