Skip to content

Instantly share code, notes, and snippets.

@woss
Last active August 4, 2017 11:30
Show Gist options
  • Save woss/6e508fe0791e3a854e6f970045f66f44 to your computer and use it in GitHub Desktop.
Save woss/6e508fe0791e3a854e6f970045f66f44 to your computer and use it in GitHub Desktop.
function h2dec(hour,min) {
hour = parseInt(hour, 10) || 0
minutes = parseInt(min, 10) || 0
var minuteDecimalToHour = parseInt((min/6)*10, 10)
return parseFloat([hour,minuteDecimalToHour].join('.'))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment