| 44 | |
| 45 | it('should detect custom FormData instances by toStringTag signature and append method presence', () => { |
| 46 | class FormData { |
| 47 | append() {} |
| 48 | |
| 49 | get [Symbol.toStringTag]() { |
| 50 | return 'FormData'; |
| 51 | } |
| 52 | } |
| 53 | assert.equal(utils.isFormData(new FormData()), true); |
| 54 | }); |
| 55 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected