(indent = "")
| 507 | } |
| 508 | |
| 509 | function obsoleteAttributes(indent = ""): string[] { |
| 510 | return [ |
| 511 | `${indent}${EDITOR_BROWSABLE_NEVER_ATTRIBUTE}`, |
| 512 | ...OBSOLETE_ATTRIBUTE.split("\n").map((line) => line.startsWith("#") ? line : `${indent}${line}`), |
| 513 | ]; |
| 514 | } |
| 515 | |
| 516 | function obsoleteAttributeBlock(indent = ""): string { |
| 517 | return obsoleteAttributes(indent).join("\n"); |
no outgoing calls
no test coverage detected
searching dependent graphs…