Module flyweight-dom

The core DOM nodes implementation.

import { Element } from 'flyweight-dom';

const element = new Element('div').append(
'Hello, ',
new Element('strong').append('world!')
);

element.classList.add('red');

element.getAttribute('class');
// ⮕ 'red'

Index

Nodes

Other