You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
209 B
JavaScript

'use strict';
module.exports = function (str) {
var parts = str.split(':');
var sec = 0;
var min = 1;
while (parts.length > 0) {
sec += min * parseInt(parts.pop(), 10);
min *= 60;
}
return sec;
};