(body: Uint8Array, contentType?: string)
| 105 | |
| 106 | /** @internal */ |
| 107 | export const uint8Array = (body: Uint8Array, contentType?: string): Body.Uint8Array => |
| 108 | new Uint8ArrayImpl(body, contentType ?? "application/octet-stream") |
| 109 | |
| 110 | const encoder = new TextEncoder() |
| 111 |
no outgoing calls
no test coverage detected
searching dependent graphs…