UNPKG

array-union

Version:

Create an array of unique values, in order, from the input arrays

4 lines (2 loc) 99 B
const arrayUnion = (...arguments_) => [...new Set(arguments_.flat())]; export default arrayUnion;