rooster.io/time.js
2015-08-13 21:32:02 +02:00

18 lines
367 B
JavaScript

//time.js
//Function for getting the time, with minutes as a fracture.
function get() {
var time = new Date();
return time.getHours() + (time.getMinutes() / 60);
}
//Function for parsing and checking if the currrent time is within the parsed string.
function within_timespan(timespan) {
}
module.exports = {
'get': get,
'within_timespan': within_timespan
}