UNPKG

orvex

Version:

A lightweight TypeScript library to create and manipulate HTML elements with ease.

9 lines (8 loc) 223 B
export function mkobj(obj, text, isFast = true) { const tag = document.createElement(obj); if (text != null) tag.textContent = text; if (isFast) document.body.appendChild(tag); return tag; }