UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

14 lines (12 loc) 248 B
enum NodeTypeEnum { elementNode = 1, attributeNode = 2, textNode = 3, cdataSectionNode = 4, commentNode = 8, documentNode = 9, documentTypeNode = 10, documentFragmentNode = 11, processingInstructionNode = 7 } export default NodeTypeEnum;