mirror of
https://github.com/jaandrle/deka-dom-el
synced 2024-11-24 17:39:36 +01:00
8 lines
261 B
JavaScript
8 lines
261 B
JavaScript
[ HTMLElement, DocumentFragment ].forEach(c=> {
|
|
const { append }= c.prototype;
|
|
c.prototype.append= function(...els){ append.apply(this, els); return this; };
|
|
});
|
|
export * from "./src/dom.js";
|
|
export * from "./src/events.js";
|
|
export * from "./src/signals.js";
|