Files
lingxiao865 6c6fe3d0d6 first commit
2025-09-18 12:39:54 +08:00

4 lines
81 B
XML

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