Skip to content

Instantly share code, notes, and snippets.

@exah
Created April 26, 2018 10:22
Show Gist options
  • Save exah/dcc577123d9b094ffb4b30745359feed to your computer and use it in GitHub Desktop.
Save exah/dcc577123d9b094ffb4b30745359feed to your computer and use it in GitHub Desktop.
const toISO = (date) => new Date(
date.getUTCFullYear(),
date.getUTCMonth(),
date.getUTCDate(),
date.getUTCHours(),
date.getUTCMinutes(),
date.getUTCSeconds(),
).toISOString().slice(0, -1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment