1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00
Peertube/client/src/app/shared/utils.ts
2017-09-14 11:57:49 +02:00

8 lines
164 B
TypeScript

import { DatePipe } from '@angular/common'
export class Utils {
static dateToHuman (date: Date) {
return new DatePipe('en').transform(date, 'medium')
}
}