(form = undefined)
| 16 | #boundary = null |
| 17 | |
| 18 | constructor (form = undefined) { |
| 19 | webidl.util.markAsUncloneable(this) |
| 20 | |
| 21 | if (form !== undefined) { |
| 22 | throw webidl.errors.conversionFailed({ |
| 23 | prefix: 'FormData constructor', |
| 24 | argument: 'Argument 1', |
| 25 | types: ['undefined'] |
| 26 | }) |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | append (name, value, filename = undefined) { |
| 31 | webidl.brandCheck(this, FormData) |
nothing calls this directly
no test coverage detected