1 var indexOf = require('./indexOf');
4 * Combines an array with all the items of another.
5 * Does not allow duplicates and is case and type sensitive.
7 function combine(arr1, arr2) {
12 var i = -1, len = arr2.length;
14 if (indexOf(arr1, arr2[i]) === -1) {
21 module.exports = combine;