tweb-i2p/src/helpers/dom/setInnerHTML.ts
2021-08-11 16:39:49 +03:00

11 lines
294 B
TypeScript

/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
export default function setInnerHTML(elem: Element, html: string) {
elem.setAttribute('dir', 'auto');
elem.innerHTML = html;
}