Converts an HTML string to a DOM Document object.
The HTML string to convert
A DOM Document object
const doc = createDOM("<html><body><h1>Hello, world!</h1></body></html>");// Returns: Document object Copy
const doc = createDOM("<html><body><h1>Hello, world!</h1></body></html>");// Returns: Document object
Converts an HTML string to a DOM Document object.