package formattools const firmament = "****************..." func Asterisks(s string) string { if len(s) < 16 { return firmament[:len(s)] } else { return firmament } }