FLUJOS/BACK_BACK/node_modules/@iarna/toml/lib/format-num.js
2025-11-07 00:06:12 +01: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
}