MCPcopy Create free account
hub / github.com/github/awesome-copilot / stripNoResponse

Function stripNoResponse

eng/external-plugin-intake.mjs:62–73  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

60}
61
62function stripNoResponse(value) {
63 if (value === undefined) {
64 return undefined;
65 }
66
67 const normalized = normalizeMultilineText(value).trim();
68 if (!normalized || normalized === "_No response_") {
69 return undefined;
70 }
71
72 return normalized;
73}
74
75function parseIssueFormSections(body) {
76 const normalized = normalizeMultilineText(body);

Callers 3

parseKeywordsFunction · 0.85
requiredFieldFunction · 0.85

Calls 1

normalizeMultilineTextFunction · 0.85

Tested by

no test coverage detected