uniqEmber.Enumerablepublic
Defined in packages/ember-runtime/lib/mixins/enumerable.js:821
Returns a new enumerable that contains only unique values. The default implementation returns an array regardless of the receiver type. let arr = ['a', 'a', 'b', 'b'];
arr.uniq(); // ['a', 'b']
This only works on primitive data types, e.g. Strings, Numbers, etc.
Returns:
Ember.Enumerable