(thing interface{})
| 374 | } |
| 375 | |
| 376 | func js(thing interface{}) string { |
| 377 | b, err := json.Marshal(thing) |
| 378 | if err != nil { |
| 379 | return fmt.Sprintf("Marshal error:%s", err) |
| 380 | } |
| 381 | return string(b) |
| 382 | } |
no outgoing calls
no test coverage detected