You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
970 B
40 lines
970 B
export function createTextNode(text) {
|
|
return document.createTextNode(text);
|
|
}
|
|
export function createComment(text) {
|
|
return document.createComment(text);
|
|
}
|
|
export function insertBefore(parentNode, newNode, referenceNode) {
|
|
parentNode.insertBefore(newNode, referenceNode);
|
|
}
|
|
export function removeChild(node, child) {
|
|
node.removeChild(child);
|
|
}
|
|
export function appendChild(node, child) {
|
|
node.appendChild(child);
|
|
}
|
|
export function parentNode(node) {
|
|
return node.parentNode;
|
|
}
|
|
export function nextSibling(node) {
|
|
return node.nextSibling;
|
|
}
|
|
export function tagName(elm) {
|
|
return elm.tagName;
|
|
}
|
|
export function setTextContent(node, text) {
|
|
node.textContent = text;
|
|
}
|
|
export function getTextContent(node) {
|
|
return node.textContent;
|
|
}
|
|
export function isElement(node) {
|
|
return node.nodeType === 1;
|
|
}
|
|
export function isText(node) {
|
|
return node.nodeType === 3;
|
|
}
|
|
export function isComment(node) {
|
|
return node.nodeType === 8;
|
|
}
|