(input string)
| 167 | } |
| 168 | |
| 169 | func jsonMarshal(input string) string { |
| 170 | output, _ := json.Marshal(input) |
| 171 | return string(output) |
| 172 | } |
| 173 | |
| 174 | func removeFirstLastChar(input string) string { |
| 175 | if len(input) <= 1 { |
no outgoing calls
no test coverage detected