()
| 10 | }, |
| 11 | |
| 12 | get name(): string { |
| 13 | return ( |
| 14 | this.Labels["stack.name"] || |
| 15 | this.Labels["dash.name"] || |
| 16 | this.Names[0].replace(new RegExp(`^/${this.stack}-`), "") |
| 17 | ); |
| 18 | }, |
| 19 | |
| 20 | get desc(): string | undefined { |
| 21 | return this.Labels["stack.desc"] || this.Labels["dash.desc"] || undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected