uniqValues.js 109 B

123
  1. export default function uniqValues(ary, property) {
  2. return _sortBy(_uniq(_compact(_map(ary, property))))
  3. }