UNPKG

unicorn-components

Version:

<a target="_blank" href="https://getunicorn.io"><img src="https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2017/Jul/07/2615006260-5-nitsnetsstudios-ondemand-UNI_avatar.png" align="left"></a>

11 lines (8 loc) 304 B
import { Pipe, PipeTransform } from '@angular/core'; import { abbrDateRange } from '../utils'; @Pipe({ name: 'formatDaterange' }) export class FormatDaterangePipe implements PipeTransform { transform(from: string = null, to: string = null): string { return abbrDateRange(from, to); } }