3 var indexOf = require('./e-index-of')
5 , forEach = Array.prototype.forEach, splice = Array.prototype.splice;
7 module.exports = function (item/*, …item*/) {
8 forEach.call(arguments, function (item) {
9 var index = indexOf.call(this, item);
10 if (index !== -1) splice.call(this, index, 1);