Files
bodyshop/client/src/utils/arrayHelper.js
2025-08-19 16:23:29 -04:00

4 lines
91 B
JavaScript

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