Socket
Socket
Sign inDemoInstall

@interactjs/utils

Package Overview
Dependencies
0
Maintainers
2
Versions
136
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.10.18 to 1.10.19

4

package.json
{
"name": "@interactjs/utils",
"version": "1.10.18",
"version": "1.10.19",
"type": "module",

@@ -16,3 +16,3 @@ "repository": {

"license": "MIT",
"gitHead": "90ef3f56"
"gitHead": "f3a3a694"
}

@@ -0,1 +1,2 @@

const VENDOR_PREFIXES = ['webkit', 'moz'];
export default function pointerExtend(dest, source) {

@@ -5,2 +6,5 @@ dest.__set ||= {};

for (const prop in source) {
// skip deprecated prefixed properties
if (VENDOR_PREFIXES.some(prefix => prop.indexOf(prefix) === 0)) continue;
if (typeof dest[prop] !== 'function' && prop !== '__set') {

@@ -7,0 +11,0 @@ Object.defineProperty(dest, prop, {

@@ -1,2 +0,2 @@

export default function e(e,t){e.__set||={};for(const _ in t)"function"!=typeof e[_]&&"__set"!==_&&Object.defineProperty(e,_,{get(){return _ in e.__set?e.__set[_]:e.__set[_]=t[_]},set(t){e.__set[_]=t},configurable:!0});return e}
const e=["webkit","moz"];export default function t(t,n){t.__set||={};for(const _ in n)e.some((e=>0===_.indexOf(e)))||"function"!=typeof t[_]&&"__set"!==_&&Object.defineProperty(t,_,{get(){return _ in t.__set?t.__set[_]:t.__set[_]=n[_]},set(e){t.__set[_]=e},configurable:!0});return t}
//# sourceMappingURL=pointerExtend.prod.js.map

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc