Files
rivet-typst/src/util.typ
2024-05-19 12:18:14 +02:00

4 lines
101 B
Typst

#let z-fill(string, length) = {
let filled = "0" * length + string
return filled.slice(-length)
}