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