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

Function isJsonContentType

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

Source from the content-addressed store, hash-verified

184 STREAMING_RESPONSE_CONTENT_TYPES.has(normalizeContentType(ct));
185
186const isJsonContentType = (ct: string | null | undefined): boolean => {
187 const normalized = normalizeContentType(ct);
188 if (!normalized) return false;
189 return (
190 normalized === "application/json" || normalized.includes("+json") || normalized.includes("json")
191 );
192};
193
194const isFormUrlEncoded = (ct: string | null | undefined): boolean =>
195 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