utils.js 84 B

1234567
  1. function normalizeNum(num)
  2. {
  3. if(num < 10)
  4. return '0' + num;
  5. else
  6. return num;
  7. }