(value: string)
| 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()) { |
no outgoing calls
no test coverage detected