UNPKG

279 BJavaScriptView Raw
1//Types of elements found in the DOM
2module.exports = {
3 Text: "text", //Text
4 Directive: "directive", //<? ... ?>
5 Comment: "comment", //<!-- ... -->
6 Script: "script", //<script> tags
7 Style: "style", //<style> tags
8 Tag: "tag", //Any tag
9 CDATA: "cdata" //<![CDATA[ ... ]]>
10};
\No newline at end of file