Files
bodyshop/client/src/utils/arrayHelper.js
2020-06-11 14:09:12 -07:00

4 lines
96 B
JavaScript

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