Files
tasq/node_modules/@iarna/toml/lib/format-num.js
T
2026-04-09 19:01:53 +08:00

7 lines
120 B
JavaScript

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