Skip to content

Instantly share code, notes, and snippets.

@transcendr
Created December 1, 2023 07:38
Show Gist options
  • Save transcendr/646300e40b06817cbb8fae9f032fe80b to your computer and use it in GitHub Desktop.
Save transcendr/646300e40b06817cbb8fae9f032fe80b to your computer and use it in GitHub Desktop.
static getFormattedTime(date: Date): string {
return (
date.getUTCHours().toString().padStart(2, '0') +
':' +
date.getUTCMinutes().toString().padStart(2, '0')
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment