(target)
| 6 | } |
| 7 | |
| 8 | function targetLabel(target) { |
| 9 | if (target.kind === "plugin") { |
| 10 | return "plugin"; |
| 11 | } |
| 12 | if (target.kind === "skill") { |
| 13 | return "skill"; |
| 14 | } |
| 15 | return "target"; |
| 16 | } |
| 17 | |
| 18 | function targetTypeLabel(target) { |
| 19 | if (target.kind === "plugin") { |
no outgoing calls
no test coverage detected