(name)
| 6194 | this.#state.push(entry); |
| 6195 | } |
| 6196 | delete(name) { |
| 6197 | webidl.brandCheck(this, _FormData); |
| 6198 | const prefix = "FormData.delete"; |
| 6199 | webidl.argumentLengthCheck(arguments, 1, prefix); |
| 6200 | name = webidl.converters.USVString(name); |
| 6201 | this.#state = this.#state.filter((entry) => entry.name !== name); |
| 6202 | } |
| 6203 | get(name) { |
| 6204 | webidl.brandCheck(this, _FormData); |
| 6205 | const prefix = "FormData.get"; |
nothing calls this directly
no test coverage detected