(args []jsonCommandArg)
| 472 | } |
| 473 | |
| 474 | func normalizeJSONCommandArgs(args []jsonCommandArg) []jsonCommandArg { |
| 475 | if args == nil { |
| 476 | return []jsonCommandArg{} |
| 477 | } |
| 478 | return args |
| 479 | } |
| 480 | |
| 481 | func normalizeJSONCommandExamples(examples []jsonCommandExample) []jsonCommandExample { |
| 482 | if examples == nil { |
no outgoing calls
no test coverage detected