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

@ampify/aquery

Package Overview
Dependencies
Maintainers
4
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ampify/aquery - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

2

package.json
{
"name": "@ampify/aquery",
"version": "2.0.4",
"version": "2.0.5",
"main": "./dist/aquery.js",

@@ -5,0 +5,0 @@ "module": "./src",

@@ -761,11 +761,12 @@ import jQuery from 'jquery';

aQuery.keepElements = (elements) => {
if (elements instanceof Array) {
elements.forEach(element => {
aQuery.keepElements(element);
});
} else {
keepElement(elements);
}
aQuery.keepElements = (...args) => {
args.forEach(elements =>{
if (elements instanceof Array) {
aQuery.keepElements(elements);
} else {
keepElement(elements);
}
});
};
const keepElement = (element) => {

@@ -772,0 +773,0 @@ if (element instanceof jQuery) {

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