We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f8cede commit e71407bCopy full SHA for e71407b
lib/parse.js
@@ -12,7 +12,6 @@ module.exports = function parse(html, options) {
12
var current;
13
var level = -1;
14
var arr = [];
15
- var byTag = {};
16
var inComponent = false;
17
18
html.replace(tagRE, function (tag, index) {
@@ -44,8 +43,6 @@ module.exports = function parse(html, options) {
44
43
});
45
}
46
47
- byTag[current.tagName] = current;
48
-
49
// if we're at root, push new base node
50
if (level === 0) {
51
result.push(current);
0 commit comments