df98563e2
28798b5d9
d592e0a9b
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') } }