* Builds a valid XML file for SOSAPI * * @param {string} xmlContent - valid xml content * @returns {string} a valid and formatted XML file
(xmlContent)
| 75 | * @returns {string} a valid and formatted XML file |
| 76 | */ |
| 77 | function buildHeadXML(xmlContent) { |
| 78 | return `<?xml version="1.0" encoding="UTF-8" ?>\n${xmlContent}\n`; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Get response headers for the object |
no outgoing calls
no test coverage detected