Last active
August 4, 2017 11:30
-
-
Save woss/6e508fe0791e3a854e6f970045f66f44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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