mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-18 22:00:37 +03:00
27 lines
819 B
TypeScript
27 lines
819 B
TypeScript
import { each } from 'support/utils/array';
|
|
import { attr } from 'support/dom/attribute';
|
|
import { contents } from 'support/dom/traversal';
|
|
import { removeElements } from 'support/dom/manipulation';
|
|
|
|
/**
|
|
* Creates a div DOM node.
|
|
*/
|
|
export const createDiv = (classNames?: string): HTMLDivElement => {
|
|
const div = document.createElement('div');
|
|
if (classNames) {
|
|
attr(div, 'class', classNames);
|
|
}
|
|
return div;
|
|
};
|
|
|
|
/**
|
|
* Creates DOM nodes modeled after the passed html string and returns the root dom nodes as a array.
|
|
* @param html The html string after which the DOM nodes shall be created.
|
|
*/
|
|
export const createDOM = (html: string): ReadonlyArray<Node> => {
|
|
const createdDiv = createDiv();
|
|
createdDiv.innerHTML = html.trim();
|
|
|
|
return each(contents(createdDiv), (elm) => removeElements(elm));
|
|
};
|