4 lines
101 B
Typst
4 lines
101 B
Typst
#let z-fill(string, length) = {
|
|
let filled = "0" * length + string
|
|
return filled.slice(-length)
|
|
} |