mirror of
https://github.com/azure/login.git
synced 2026-06-06 21:17:09 +00:00
11 lines
326 B
JavaScript
11 lines
326 B
JavaScript
define(['./_flatten', './restArguments', './uniq'], function (_flatten, restArguments, uniq) {
|
|
|
|
// Produce an array that contains the union: each distinct element from all of
|
|
// the passed-in arrays.
|
|
var union = restArguments(function(arrays) {
|
|
return uniq(_flatten(arrays, true, true));
|
|
});
|
|
|
|
return union;
|
|
|
|
});
|