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

Method parseTaskIdList

src/utils/TasksPluginParser.ts:435–440  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

433 }
434
435 private static parseTaskIdList(value: string): string[] {
436 return value
437 .split(",")
438 .map((item) => item.trim())
439 .filter((item) => /^[A-Za-z0-9_-]+$/.test(item));
440 }
441
442 private static assignCustomFrontmatter(state: ParsingState, key: string, value: string): void {
443 if (!key.trim()) {

Callers 2

consumeDependsOnFieldMethod · 0.95
applyDataviewFieldMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected