mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-07-04 21:47:21 +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
|
|
}
|