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

@semantic-ui/query

Package Overview
Dependencies
Maintainers
0
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-ui/query - npm Package Compare versions

Comparing version 0.0.40 to 0.0.41

4

package.json

@@ -26,5 +26,5 @@ {

"dependencies": {
"@semantic-ui/utils": "^0.0.40"
"@semantic-ui/utils": "^0.0.41"
},
"version": "0.0.40"
"version": "0.0.41"
}

@@ -271,2 +271,5 @@ import { isPlainObject, isString, isArray, isDOM, isFunction, findIndex, inArray, isClient, isObject, each } from '@semantic-ui/utils';

}
else if(this.isGlobal) {
return inArray(selector, ['window', 'globalThis']);
}
else {

@@ -286,2 +289,5 @@ const elements = selector instanceof Query ? selector.get() : [selector];

}
else if(this.isGlobal) {
return !inArray(selector, ['window', 'globalThis']);
}
else {

@@ -300,5 +306,8 @@ const elements = selector instanceof Query ? selector.get() : [selector];

}
else if(selector) {
else if(selector && el?.closest) {
return el.closest(selector);
}
else if(this.isGlobal) {
return inArray(selector, ['window', 'globalThis']);
}
}).filter(Boolean);

@@ -305,0 +314,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc