MCPcopy Index your code
hub / github.com/callumalpass/tasknotes / getBasesDisplayString

Function getBasesDisplayString

src/ui/taskCardPresentation.ts:31–34  ·  view source on GitHub ↗
(value: RenderableBasesValue)

Source from the content-addressed store, hash-verified

29}
30
31function getBasesDisplayString(value: RenderableBasesValue): string {
32 const text = value.toString();
33 return text === "[object Object]" ? "" : text;
34}
35
36export function isNullBasesValue(value: unknown): boolean {
37 if (value === null || value === undefined) {

Callers 3

isNullBasesValueFunction · 0.85
isEmptyCardDisplayValueFunction · 0.85
renderBasesValueFunction · 0.85

Calls 1

toStringMethod · 0.65

Tested by

no test coverage detected