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

cm-web-modules

Package Overview
Dependencies
Maintainers
1
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cm-web-modules - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

2

package.json
{
"name": "cm-web-modules",
"version": "1.2.2",
"version": "1.2.3",
"description": "Collection of clean and small ES6 modules for the web",

@@ -5,0 +5,0 @@ "main": "src/LibraryManager.js",

@@ -14,4 +14,4 @@ /**

this.dateAtLatestStart = null
this.secondsExpiredTillLastPause = 0
this.secondsExpiredSinceLastStart = 0
this.secondsExpiredSinceLastPause = 0
this.timer = null

@@ -23,3 +23,3 @@ this.timerStateChanged = props.onStateChanged

secondsExpired() {
return this.secondsExpiredSinceLastPause + this.secondsExpiredSinceLastStart
return this.secondsExpiredTillLastPause + this.secondsExpiredSinceLastStart
}

@@ -38,3 +38,3 @@

this.timerStateChanged(this.running())
this.timerSecondsChanged(this.secondsExpiredSinceLastPause)
this.timerSecondsChanged(this.secondsExpiredTillLastPause)
}

@@ -48,3 +48,3 @@ }

this.endDate = new Date()
this.secondsExpiredSinceLastPause = this.secondsExpired()
this.secondsExpiredTillLastPause = this.secondsExpired()
this.secondsExpiredSinceLastStart = 0

@@ -61,3 +61,3 @@ this.timerStateChanged(this.running())

this.secondsExpiredSinceLastStart = 0
this.secondsExpiredSinceLastPause = 0
this.secondsExpiredTillLastPause = 0
this.timerSecondsChanged(this.secondsExpired())

@@ -64,0 +64,0 @@ this.timerStateChanged(this.running())

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