1 2 3 4 5 6 7 8
import { DatePipe } from '@angular/common' export class Utils { static dateToHuman (date: Date) { return new DatePipe('en').transform(date, 'medium') } }