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

Function isUndefined

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

Source from the content-addressed store, hash-verified

147}
148
149export function isUndefined(value: any): boolean {
150 return value === undefined;
151}
152
153export function isNumber(value: any): boolean {
154 return typeof value === "number" && !isNaN(value);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected