MCPcopy Create free account
hub / github.com/callumalpass/tasknotes / stringifyStatusValue

Method stringifyStatusValue

src/utils/DependencyCache.ts:474–484  ·  view source on GitHub ↗
(status: unknown)

Source from the content-addressed store, hash-verified

472 }
473
474 private stringifyStatusValue(status: unknown): string | null {
475 if (
476 typeof status === "string" ||
477 typeof status === "number" ||
478 typeof status === "boolean"
479 ) {
480 return String(status);
481 }
482
483 return null;
484 }
485
486 /**
487 * Clear only forward dependencies (tasks this task depends on)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected