Dolla is a library of javascipt methods that augment existing DOM methods. Dolla is platform-agnotstic, with each method being fully tree-shakeable by any bundler. No dependencies, just helpful methods you can include as you need them.
Installation
npm install dolla
Usage
Import only the methods you use.
import {createElement} from 'dolla';
document.body.append(createElement('div', {
class: 'text-bold',
style: 'text-decoration: underline',
content: ['Hello World']
}))