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.
Documentation
npm install dolla
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']
}))
Checkout details about each method on dollajs.com
npm run docs:server
npm run docs:build
npm run test
npm publish