riku
15 小时以前 cf4787bc8188cd0acc8a42793730b076742f29c1
1
2
3
module.exports.format = function (num) {
  return num < 10 ? '0' + num : num;
};