| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 1 2 1 | define(['./unique'], function (unique) {
/**
* Concat multiple arrays and remove duplicates
* @version 0.1.0 (2011/01/12)
*/
function union(arrs) {
return unique(Array.prototype.concat.apply([], arguments));
}
return union;
});
|