(value string)
| 101 | } |
| 102 | |
| 103 | func short(value string) string { |
| 104 | if len(value) <= 12 { |
| 105 | return value |
| 106 | } |
| 107 | return value[:12] |
| 108 | } |
| 109 | |
| 110 | func wallSecondsText(startedAt, endedAt string) string { |
| 111 | if startedAt == "" || endedAt == "" { |
no outgoing calls
no test coverage detected