mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-26 08:48:18 -05:00
6 lines
104 B
JavaScript
6 lines
104 B
JavaScript
'use strict';
|
|
|
|
module.exports = (...arguments_) => {
|
|
return [...new Set([].concat(...arguments_))];
|
|
};
|