mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-25 21:09:12 +08:00
6 lines
120 B
Text
Executable file
6 lines
120 B
Text
Executable file
'use strict'
|
|
module.exports = (d, num) => {
|
|
num = String(num)
|
|
while (num.length < d) num = '0' + num
|
|
return num
|
|
}
|