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

xapp-page

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xapp-page - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

2

package.json
{
"name": "xapp-page",
"version": "1.0.5",
"version": "1.0.6",
"description": "",

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

@@ -40,2 +40,11 @@ class Task {

_clearTimeout(clearTime, timeList, id, clear, remove) {
if (id && timeList[id] && timeList[id].id) {
clearTime(timeList[id].id);
if (clearTime.name === 'clearInterval') {
this.intervalList[id] = null;
} else {
this.timeOutList[id] = null;
}
return;
}
if (!clear) return clearTime(timeList[id].id);

@@ -89,2 +98,3 @@ Object.keys(timeList).forEach(n => {

Object.keys(this.intervalList).forEach(n => {
if (!this.intervalList[n]) return;
const { fn, duration } = this.intervalList[n];

@@ -91,0 +101,0 @@ const id = setInterval(fn, duration);

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