elarrarte-d
Results
1
issues of
elarrarte-d
pad function
12
Hi! Can you consider to add a builtin pad(n) function to jq? Something like this: def pad(n): if n==0 then (.) else "0" + (.) | pad(n - 1) end;...