Huge News!Announcing our $40M Series B led by Abstract Ventures.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 1.3.1 to 1.3.2

4

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

@@ -37,3 +37,3 @@ "module": "./src",

},
"gitHead": "61a774810a6f974ac8be989ed9e59ee73c879baf"
"gitHead": "7870e2b1eb7af8b34f519ca1689423e2702465b6"
}

@@ -52,2 +52,3 @@ import jQuery from 'jquery';

value: '[AMPIFY_EVENT_VALUE]',
checked: '[AMPIFY_EVENT_CHECKED]',
};

@@ -222,3 +223,7 @@

callback({ target: node, value: AMPlaceHolders.value });
callback({
target: node,
value: AMPlaceHolders.value,
checked: AMPlaceHolders.checked,
});

@@ -720,3 +725,5 @@ if (event === 'click') {

Object.keys(state).forEach((prop) => {
const value = state[prop].replace(AMPlaceHolders.value, 'event.value');
const value = state[prop]
.replace(AMPlaceHolders.value, 'event.value')
.replace(AMPlaceHolders.checked, 'event.checked');

@@ -723,0 +730,0 @@ arrState.push(`${prop}: ${value}`);

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