UNPKG

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