Sha256: 08ddf0c1c913c7fc2562bd176487c84e29b518eb78daf90459263bd0f3177d6c
Contents?: true
Size: 411 Bytes
Versions: 87
Compression:
Stored size: 411 Bytes
Contents
//Types of elements found in the DOM module.exports = { Text: "text", //Text Directive: "directive", //<? ... ?> Comment: "comment", //<!-- ... --> Script: "script", //<script> tags Style: "style", //<style> tags Tag: "tag", //Any tag CDATA: "cdata", //<![CDATA[ ... ]]> Doctype: "doctype", isTag: function(elem){ return elem.type === "tag" || elem.type === "script" || elem.type === "style"; } };
Version data entries
87 entries across 67 versions & 13 rubygems