/* * Copyright (c) 2019. Mario Studio. All right reserved. */ import { Pipe, PipeTransform, } from '@angular/core'; import { List, sortedUniq, } from 'lodash'; @Pipe({ name: 'sortedUniq', }) export class SortedUniqPipe implements PipeTransform { transform ( array: List | null | undefined, ): T[] { return sortedUniq(array); } }