* Builds the opening line of a code-fence memory block. * Format: ``````gh-aw-comment-memory: * @param {string} memoryId * @returns {string}
(memoryId)
| 21 | * @returns {string} |
| 22 | */ |
| 23 | function buildCodeFenceOpener(memoryId) { |
| 24 | return `${COMMENT_MEMORY_CODE_FENCE}${COMMENT_MEMORY_TAG}:${memoryId}`; |
| 25 | } |
| 26 | |
| 27 | function stripCommentMemoryCodeFence(content) { |
| 28 | const trimmed = typeof content === "string" ? content.trim() : ""; |
no outgoing calls
no test coverage detected