Files

4 lines
81 B
Plaintext
Raw Permalink Normal View History

2025-11-28 16:49:36 +08:00
module.exports.format = function (num) {
return num < 10 ? '0' + num : num;
};