MCPcopy Index your code
hub / github.com/callstack/agent-device / readRequiredText

Function readRequiredText

src/utils/install-source-config.ts:94–98  ·  view source on GitHub ↗
(value: unknown, field: string)

Source from the content-addressed store, hash-verified

92}
93
94function readRequiredText(value: unknown, field: string): string {
95 const text = readText(value);
96 if (!text) throw new AppError('INVALID_ARGS', `${field} must be a non-empty string.`);
97 return text;
98}
99
100function readInteger(value: unknown, field: string): number {
101 const parsed =

Calls 1

readTextFunction · 0.70

Tested by

no test coverage detected