MCPcopy Create free account
hub / github.com/Hello-Application-XH/HelloGML / isString

Function isString

src/utils.ts:137–139  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

135
136// 轻量类型判断(替代 lodash)
137export function isString(value: any): boolean {
138 return typeof value === "string";
139}
140
141export function isArray(value: any): boolean {
142 return Array.isArray(value);

Callers 5

handleImageGenerationsFunction · 0.90
handleVideoGenerationsFunction · 0.90
extractRefFileUrlsFunction · 0.90
receiveStreamFunction · 0.90
startFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected