mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 10:49:28 +02:00
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import { DatePipe } from '@angular/common'
|
|
|
|
export class Utils {
|
|
|
|
static dateToHuman (date: Date) {
|
|
return new DatePipe('en').transform(date, 'medium')
|
|
}
|
|
}
|