MCPcopy
hub / github.com/di-sukharev/opencommit / processEndOfBody

Function processEndOfBody

out/cli.cjs:60542–60549  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

60540 } else if (request3.body != null) {
60541 const processBodyChunk = async function* (bytes) {
60542 if (isCancelled(fetchParams)) {
60543 return;
60544 }
60545 yield bytes;
60546 fetchParams.processRequestBodyChunkLength?.(bytes.byteLength);
60547 };
60548 const processEndOfBody = () => {
60549 if (isCancelled(fetchParams)) {
60550 return;
60551 }
60552 if (fetchParams.processRequestEndOfBody) {

Callers 1

httpNetworkFetchFunction · 0.85

Calls 1

isCancelledFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…