module.exports.format = function (num) { return num < 10 ? '0' + num : num; };