UNPKG

@ayonli/jsext

Version:

A JavaScript extension package for building strong and modern applications.

13 lines (11 loc) 366 B
function Text(message) { const text = document.createElement("p"); text.innerHTML = message.replace(/ /g, "&nbsp;").replace(/\n/g, "<br />"); text.style.margin = "0 0 1rem"; text.style.fontSize = "1em"; text.style.width = "100%"; text.style.overflowX = "auto"; return text; } export { Text as default }; //# sourceMappingURL=Text.js.map