Skip to content

Instantly share code, notes, and snippets.

@alandotcom
Created March 24, 2017 18:28
Show Gist options
  • Save alandotcom/4663a03e6d2deb28f92109c73c13920f to your computer and use it in GitHub Desktop.
Save alandotcom/4663a03e6d2deb28f92109c73c13920f to your computer and use it in GitHub Desktop.
// Hours [0, ...23]
function offsetHour (hour, offset) {
return (((hour + offset) % 24) + 24) % 24
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment