Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lesca-click

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lesca-click - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

8

lib/click.js

@@ -135,3 +135,11 @@ "use strict";

}
},
getClientXY: function getClientXY(e) {
var left = e.clientX || e.targetTouches[0].clientX;
var top = e.clientY || e.targetTouches[0].clientY;
return {
left: left,
top: top
};
}
};

2

package.json
{
"name": "lesca-click",
"version": "1.0.7",
"version": "1.0.8",
"description": "replace click / touch start on SPY page",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -115,2 +115,7 @@ module.exports = {

},
getClientXY(e) {
const left = e.clientX || e.targetTouches[0].clientX;
const top = e.clientY || e.targetTouches[0].clientY;
return { left, top };
},
};
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