2 lines (2 loc) · 140 B
1{{- /* bytes → human-readable size */ -}}
2{{- if lt . 1024 -}}{{ . }} B{{- else -}}{{ printf "%.2f KB" (div (float .) 1024) }}{{- end -}}