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' Copy
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'
The core DOM nodes implementation.