some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / domelementtype / index.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/domelementtype/index.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/domelementtype/index.js
deleted file mode 100644 (file)
index ab15b0f..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-//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";
-       }
-};