count-down.wxs 81 B

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