New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

exokit

Package Overview
Dependencies
Maintainers
1
Versions
388
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exokit - npm Package Compare versions

Comparing version

to
0.0.50

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 => {

2

package.json
{
"name": "exokit",
"version": "0.0.49",
"version": "0.0.50",
"main": "index.js",

@@ -5,0 +5,0 @@ "dependencies": {