Set seems like a nice way to create Arrays with guaranteed unique elements, but it does not expose any good way to get properties, except for generator [Set
Assuming you are just using Set temporarily to get unique values in an array and then converting back to an Array, try using this:
Set
_.uniq([])
This relies on using underscore or lo-dash.