MCPcopy
hub / github.com/tinyplex/tinybase / isCellOrValueOrUndefined

Function isCellOrValueOrUndefined

src/common/cell.ts:56–57  ·  view source on GitHub ↗
(cellOrValue: any)

Source from the content-addressed store, hash-verified

54};
55
56export const isCellOrValueOrUndefined = (cellOrValue: any): boolean =>
57 isUndefined(cellOrValue) || !isUndefined(getCellOrValueType(cellOrValue));
58
59export const isJsonType = (type: any): boolean =>
60 type == OBJECT || type == ARRAY;

Callers

nothing calls this directly

Calls 2

isUndefinedFunction · 0.90
getCellOrValueTypeFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…