{"version":3,"file":"npm.domelementtype.js","mappings":"+IACAA,OAAOC,eAAeC,QAAS,aAAc,CAAEC,OAAO,IACtDD,QAAQE,QAAUF,QAAQG,MAAQH,QAAQI,IAAMJ,QAAQK,MAAQL,QAAQM,OAASN,QAAQO,QAAUP,QAAQQ,UAAYR,QAAQS,KAAOT,QAAQU,WAAQ,EAWtJV,QAAQU,MALR,SAASA,MAAMC,MACX,MAAsB,QAAdA,KAAKC,MACK,WAAdD,KAAKC,MACS,UAAdD,KAAKC,MAKbZ,QAAQS,KAAO,OAEfT,QAAQQ,UAAY,YAEpBR,QAAQO,QAAU,UAElBP,QAAQM,OAAS,SAEjBN,QAAQK,MAAQ,QAEhBL,QAAQI,IAAM,MAEdJ,QAAQG,MAAQ,QAEhBH,QAAQE,QAAU","sources":["webpack://giveeasy.cloud/./node_modules/domelementtype/lib/index.js"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Doctype = exports.CDATA = exports.Tag = exports.Style = exports.Script = exports.Comment = exports.Directive = exports.Text = exports.isTag = void 0;\n/**\n * Tests whether an element is a tag or not.\n *\n * @param elem Element to test\n */\nfunction isTag(elem) {\n return (elem.type === \"tag\" /* Tag */ ||\n elem.type === \"script\" /* Script */ ||\n elem.type === \"style\" /* Style */);\n}\nexports.isTag = isTag;\n// Exports for backwards compatibility\n/** Type for Text */\nexports.Text = \"text\" /* Text */;\n/** Type for */\nexports.Directive = \"directive\" /* Directive */;\n/** Type for */\nexports.Comment = \"comment\" /* Comment */;\n/** Type for