(value)
| 77324 | } |
| 77325 | function isRLCFormDataValue(value) { |
| 77326 | return typeof value === "string" || value instanceof Uint8Array || // We don't do `instanceof Blob` since we should also accept polyfills of e.g. File in Node. |
| 77327 | typeof value.stream === "function"; |
| 77328 | } |
| 77329 | function isRLCFormDataInput(body) { |
| 77330 | return body !== void 0 && body instanceof Object && Object.values(body).every((value) => isRLCFormDataValue(value) || Array.isArray(value) && value.every(isRLCFormDataValue)); |
| 77331 | } |
no test coverage detected