02d7c450d368a5c085aaf567425928cdf7a6755a1b34821dd798dc8f84fd824c0fd3347ce3d39d8ee30bf5b1bf240ddee9be302e41484a7680c054c19ec03a 411 B

123456789101112131415
  1. //Types of elements found in the DOM
  2. module.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. Doctype: "doctype",
  11. isTag: function(elem){
  12. return elem.type === "tag" || elem.type === "script" || elem.type === "style";
  13. }
  14. };