1'use strict'; 2 3module.exports = (...arguments_) => { 4 return [...new Set([].concat(...arguments_))]; 5}; 6 7