(content: string)
| 311 | const END_MARKER = '<!-- NEXT-AGENTS-MD-END -->' |
| 312 | |
| 313 | function hasExistingIndex(content: string): boolean { |
| 314 | return content.includes(START_MARKER) |
| 315 | } |
| 316 | |
| 317 | function wrapWithMarkers(content: string): string { |
| 318 | return `${START_MARKER}${content}${END_MARKER}` |
no test coverage detected