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