(dispatcher, key)
| 13068 | } |
| 13069 | if (ArrayBuffer.isView(V) || types.isArrayBuffer(V)) { |
| 13070 | return webidl.converters.BufferSource(V, prefix, name); |
| 13071 | } |
| 13072 | if (util.isFormDataLike(V)) { |
| 13073 | return webidl.converters.FormData(V, prefix, name, { strict: false }); |
| 13074 | } |
| 13075 | if (V instanceof URLSearchParams) { |
| 13076 | return webidl.converters.URLSearchParams(V, prefix, name); |
| 13077 | } |
| 13078 | return webidl.converters.DOMString(V, prefix, name); |
| 13079 | }; |
| 13080 | webidl.converters.BodyInit = function(V, prefix, argument) { |
| 13081 | if (V instanceof ReadableStream) { |
no test coverage detected