export default function unique(arr){
  return Array.from(new Set(arr.sort()));
}
Run tests to see results.