Skip to content

Instantly share code, notes, and snippets.

@josefaidt
Created April 20, 2022 21:38
Show Gist options
  • Save josefaidt/a9eb2951fa49dcf3dcb84c1654774405 to your computer and use it in GitHub Desktop.
Save josefaidt/a9eb2951fa49dcf3dcb84c1654774405 to your computer and use it in GitHub Desktop.
gets date from epoch
const getDateFromEpoch = epoch => {
let date = new Date(0)
date.setUTCSeconds(epoch)
return date
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment