4 lines
81 B
Plaintext
4 lines
81 B
Plaintext
|
|
module.exports.format = function (num) {
|
||
|
|
return num < 10 ? '0' + num : num;
|
||
|
|
};
|