(section, subsection)
| 199 | } |
| 200 | |
| 201 | async deleteSection(section, subsection) { |
| 202 | this.parsedConfig = this.parsedConfig.filter( |
| 203 | config => |
| 204 | !(config.section === section && config.subsection === subsection) |
| 205 | ) |
| 206 | } |
| 207 | |
| 208 | async append(path, value) { |
| 209 | return this.set(path, value, true) |
no outgoing calls
no test coverage detected