Skip to content

Instantly share code, notes, and snippets.

@blakazulu
Created January 25, 2021 14:09
Show Gist options
  • Save blakazulu/e2d2875c68162dc8aa8e0e3b05df70fd to your computer and use it in GitHub Desktop.
Save blakazulu/e2d2875c68162dc8aa8e0e3b05df70fd to your computer and use it in GitHub Desktop.
Angular CMS
export class DateHelper {
static createDate(): number {
return Date.now();
}
static formatDate(timestamp: number): string {
return new Date(timestamp).toUTCString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment