Files
toml-action/node_modules/@iarna/toml/lib/format-num.js
2022-10-29 16:48:57 -04:00

7 lines
120 B
JavaScript
Executable File

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