UNPKG

99 BJavaScriptView Raw
1const arrayUnion = (...arguments_) => [...new Set(arguments_.flat())];
2
3export default arrayUnion;