summaryrefslogtreecommitdiff
path: root/src/content/pastebins/2018/07/13/nix-strpad.adoc
blob: 0557b798024cfb9bfbfc755832e6b2de01380aa9 (about) (plain) (blame)
1
2
3
4
5
6
= Nix string padding

[source,nix]
----
padString = (n: if n < 10 then "0" + toString n else toString n)
----