MCPcopy Create free account
hub / github.com/ShaanCoding/makeread.me / isString

Function isString

frontend/openAPI/generated/core/request.ts:16–18  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

14};
15
16export const isString = (value: any): value is string => {
17 return typeof value === 'string';
18};
19
20export const isStringWithValue = (value: any): value is string => {
21 return isString(value) && value !== '';

Callers 5

isStringWithValueFunction · 0.85
processFunction · 0.85
getHeadersFunction · 0.85
getRequestBodyFunction · 0.85
getResponseHeaderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected