(section)
| 193 | } |
| 194 | |
| 195 | async getSubsections(section) { |
| 196 | return this.parsedConfig |
| 197 | .filter(config => config.isSection && config.section === section) |
| 198 | .map(config => config.subsection) |
| 199 | } |
| 200 | |
| 201 | async deleteSection(section, subsection) { |
| 202 | this.parsedConfig = this.parsedConfig.filter( |
no outgoing calls
no test coverage detected