(thing interface{})
| 237 | } |
| 238 | |
| 239 | func js(thing interface{}) string { |
| 240 | b, err := json.Marshal(thing) |
| 241 | if err != nil { |
| 242 | return fmt.Sprintf("Marshal error:%s", err) |
| 243 | } |
| 244 | return string(b) |
| 245 | } |
no outgoing calls
no test coverage detected