Files
bodyshop/client/src/utils/arrayHelper.js

4 lines
96 B
JavaScript

export function onlyUnique(value, index, self, key) {
return self.indexOf(value) === index;
}