Skip to content

Instantly share code, notes, and snippets.

@robertwtucker
Last active July 13, 2023 17:21
Show Gist options
  • Save robertwtucker/5364019e79dcb808d449ea733e612449 to your computer and use it in GitHub Desktop.
Save robertwtucker/5364019e79dcb808d449ea733e612449 to your computer and use it in GitHub Desktop.
Generate a Unix timestamp
const urlencoded = new URLSearchParams()
urlencoded.append(
'timestamp',
Math.floor(new Date().getTime() / 1000).toString()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment