4 lines
81 B
Plaintext
Raw Normal View History

2025-04-28 09:21:04 +08:00
module.exports.format = function (num) {
return num < 10 ? '0' + num : num;
};