Comparing version
19
index.js
@@ -798,2 +798,21 @@ const events = require('events'); | ||
} | ||
matches(selector) { | ||
let match; | ||
if (match = selector.match(/^#(.+)$/)) { | ||
const id = match[1]; | ||
return ( | ||
(this.getAttribute && this.getAttribute('id') === id) || | ||
(this.attrs && this.attrs.some(attr => attr.name === 'id' && attr.value === id)) | ||
); | ||
} else if (match = selector.match(/^\.(.+)$/)) { | ||
const className = match[1]; | ||
return ( | ||
(this.getAttribute && this.getAttribute('class') === className) || | ||
(this.attrs && this.attrs.some(attr => attr.name === 'class' && attr.value === className)) | ||
); | ||
} else { | ||
const tagName = selector; | ||
return this.tagName === tagName; | ||
} | ||
} | ||
traverse(fn) { | ||
@@ -800,0 +819,0 @@ const _recurse = node => { |
{ | ||
"name": "exokit", | ||
"version": "0.0.49", | ||
"version": "0.0.50", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
100262
0.67%3119
0.61%