Skip to content

Instantly share code, notes, and snippets.

@joepuzzo
Created October 16, 2020 13:53
Show Gist options
  • Save joepuzzo/4bb5afb9578b8708b136fda8127e83fd to your computer and use it in GitHub Desktop.
Save joepuzzo/4bb5afb9578b8708b136fda8127e83fd to your computer and use it in GitHub Desktop.
const formatDate = (d, config = {}) => {
const date = new Date(d);
return new Intl.DateTimeFormat('en-US', {
timeZone: 'America/Los_Angeles',
month: 'short',
day: 'numeric',
hour: 'numeric',
hour12: true,
...config,
}).format(date);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment