1. function getOuterHTMl (el) {
    2. if (el.outerHTML) {
    3. return el.outerHTML
    4. } else {
    5. const container = document.createElement('div')
    6. container.appendChild(el.cloneNode(true))
    7. return container.innerHTML
    8. }
    9. }