UNPKG
array-uniq
Version:
latest (3.0.0)
3.0.0
2.1.0
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
0.1.1
0.1.0
Create an array without duplicates
github.com/sindresorhus/array-uniq
sindresorhus/array-uniq
array-uniq
/
index.js
4 lines
(3 loc)
•
74 B
JavaScript
View Raw
1
2
3
4
export
default
function
arrayUniq
(
array
) {
return
[...
new
Set
(array)]; }