hensei-web/node_modules/@iarna/toml/lib/format-num.js
2020-09-11 06:44:42 -07:00

6 lines
120 B
JavaScript
Executable file

'use strict'
module.exports = (d, num) => {
num = String(num)
while (num.length < d) num = '0' + num
return num
}