(value)
| 5662 | } else if (isArrayBuffer(object)) { |
| 5663 | source = new Uint8Array(object.slice()); |
| 5664 | } else if (ArrayBuffer.isView(object)) { |
| 5665 | source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength)); |
| 5666 | } else if (util.isFormDataLike(object)) { |
| 5667 | const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, "0")}`; |