4 lines
91 B
JavaScript
4 lines
91 B
JavaScript
export function onlyUnique(value, index, self) {
|
|
return self.indexOf(value) === index;
|
|
}
|