()
| 3 | |
| 4 | class SpecFormData { |
| 5 | constructor() { |
| 6 | this._entries = []; |
| 7 | this[Symbol.toStringTag] = 'FormData'; |
| 8 | } |
| 9 | append(name, value) { |
| 10 | this._entries.push([name, value]); |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected