All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.dom.Element.ext.kt Maven / Gradle / Ivy

package dom

// COPIED from `kotlinx.dom`

fun Element.appendText(
    text: String,
): Element {
    appendChild(ownerDocument.createTextNode(text))
    return this
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy