cmux/node_modules/@iarna/toml/lib/format-num.js
2026-01-29 17:36:26 -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
}