MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / isJsonContentType

Function isJsonContentType

packages/plugins/openapi/src/sdk/invoke.ts:227–233  ·  view source on GitHub ↗
(ct: string | null | undefined)

Source from the content-addressed store, hash-verified

225 STREAMING_RESPONSE_CONTENT_TYPES.has(normalizeContentType(ct));
226
227const isJsonContentType = (ct: string | null | undefined): boolean => {
228 const normalized = normalizeContentType(ct);
229 if (!normalized) return false;
230 return (
231 normalized === "application/json" || normalized.includes("+json") || normalized.includes("json")
232 );
233};
234
235const isFormUrlEncoded = (ct: string | null | undefined): boolean =>
236 normalizeContentType(ct) === "application/x-www-form-urlencoded";

Callers 2

applyRequestBodyFunction · 0.70
invoke.tsFile · 0.70

Calls 1

normalizeContentTypeFunction · 0.85

Tested by

no test coverage detected