import {Pipe} from 'angular2/core'; /// @Pipe({name: 'momentDate'}) export class MomentDatePipe { transform(value:string, args:string[]) : any { return moment(value).format('LLL'); } }