Creates an array of unique values that is the symmetric difference of the given arrays
arrays
(...Array): input arrays
(Array): an array of unique values
const result = arrays.xor(['a', 1, [5]], ['b', 1, 'a'], ['b', 'c', 5]);
console.log(result);
> [[5], 'c', 5]