Packages
Library for accessibility snapshot testing in Phoenix applications using axe-core and Playwright.
Current section
Files
Jump to
Current section
Files
assets/node_modules/underscore/amd/union.js
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;
});