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

@tradeshift/elements

Package Overview
Dependencies
Maintainers
4
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tradeshift/elements - npm Package Compare versions

Comparing version 0.5.0 to 0.5.2

lib/core.esm.js

7

package.json
{
"name": "@tradeshift/elements",
"version": "0.5.0",
"version": "0.5.2",
"src": "src/core.js",
"main": "lib/core.umd.js",
"browser": "lib/core.umd.js",
"module": "lib/core.esm.js",
"files": [

@@ -12,5 +13,5 @@ "lib/*",

"dependencies": {
"@open-wc/polyfills-loader": "^0.3.1"
"lit-element": "^2.2.1"
},
"gitHead": "f44043114952b9e1acea6811caff85d6c6970dc8"
"gitHead": "f9ad23777c014a17b135524dcd23652745337064"
}

@@ -16,1 +16,9 @@ export const classNamesToSelector = classNamesObject => {

}, {});
export const debounceEvent = (callback, wait) => {
let timeout;
return (...args) => {
clearTimeout(timeout);
timeout = setTimeout(() => callback.apply(this, args), wait);
};
};

Sorry, the diff of this file is too big to display

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