epiphany/node_modules/@iarna/toml/lib/format-num.js
2023-12-09 22:19:03 -08: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
}