Socket
Socket
Sign inDemoInstall

@interactjs/utils

Package Overview
Dependencies
Maintainers
2
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@interactjs/utils - npm Package Compare versions

Comparing version 1.8.0-alpha.7 to 1.8.0-rc.0

4

package.json
{
"name": "@interactjs/utils",
"version": "1.8.0-alpha.7",
"version": "1.8.0-rc.0",
"license": "MIT",
"devDependencies": {
"@interactjs/_dev": "1.8.0-alpha.7"
"@interactjs/_dev": "1.8.0-rc.0"
},

@@ -8,0 +8,0 @@ "publishConfig": {

@@ -52,4 +52,4 @@ import { closest, getElementRect, parentNode } from "./domUtils.js";

rect.y = rect.top || 0;
rect.width = rect.width || rect.right - rect.x;
rect.height = rect.height || rect.bottom - rect.y;
rect.width = rect.width || rect.right || 0 - rect.x;
rect.height = rect.height || rect.bottom || 0 - rect.y;
}

@@ -56,0 +56,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc