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

com.natpryce.xmlk.jvm_default_dom_implementation.kt Maven / Gradle / Ivy

Go to download

A small, extensible Java library to randomly mutate JSON documents. Useful for fuzz testing.

There is a newer version: 3.7.0.0
Show newest version
package com.natpryce.xmlk

import org.w3c.dom.DOMImplementation
import javax.xml.parsers.DocumentBuilderFactory


fun defaultDOMImplementation() =
    DocumentBuilderFactory.newInstance().apply { isCoalescing = false }.newDocumentBuilder().domImplementation

fun DOMImplementation.createEmptyDocument() =
    createDocument(null, null, null)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy