2025-06-23 23:56:31 +08:00

4 lines
81 B
XML

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