Skip to content

Instantly share code, notes, and snippets.

@mohayonao
Last active August 26, 2015 08:24
Show Gist options
  • Select an option

  • Save mohayonao/880d10b14403bbb1cb77 to your computer and use it in GitHub Desktop.

Select an option

Save mohayonao/880d10b14403bbb1cb77 to your computer and use it in GitHub Desktop.
function timestampToTimeItems(timestamp) {
return {
hours: (((timestamp / 3600000)|0) + 9) % 24,
minutes: ((timestamp / 60000)|0) % 60,
seconds: ((timestamp / 1000)|0) % 60,
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment