(name, value)
| 151 | return this.#pairs.length; |
| 152 | } |
| 153 | append(name, value) { |
| 154 | this.#pairs.push({ name, value }); |
| 155 | this.updateParts(); |
| 156 | } |
| 157 | delete(name) { |
| 158 | this.#pairs = this.#pairs.filter(pair => pair.name != name); |
| 159 | this.updateParts(); |
no test coverage detected