index.js 104 B

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