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