projects/rebirth-ng/src/lib/common/date.pipe.ts
        
| name | reDate | 
| transform | |||||||||
transform(value: any, ...args: any[])
                     | 
                |||||||||
| 
                             
                                    Parameters :
                                     
                            
 
                                Returns :      
                                any
                             | 
                
import { Pipe, PipeTransform } from '@angular/core';
import { formatDate, parseDate } from '../utils/date-utils';
// date pipe for ie 11 ng DatePipe issue.
@Pipe({
  name: 'reDate'
})
export class DatePipe implements PipeTransform {
  transform(value: any, ...args: any[]): any {
    if (value) {
      const date = parseDate(value);
      const format = args && args[0] ? args[0] : 'YYYY-MM-DD HH:mm:ss';
      return formatDate(date, format);
    }
  }
}