blob: e6d9d64c56fb0bc5dedf393c6d0015a9e2f06c94 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
////
export sort=1
////
= Nix string padding
:categories: nix
[source,nix]
----
padString = (n: if n < 10 then "0" + toString n else toString n)
----
|