UNPKG

nts-ng2-components

Version:

Paquete de componentes para Angular2 desarrollado por NITSNETS.

11 lines (8 loc) 314 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); } }