UNPKG

array-uniq

Version:
4 lines (3 loc) 74 B
export default function arrayUniq(array) { return [...new Set(array)]; }