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

demrec

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

demrec - npm Package Compare versions

Comparing version 5.4.1 to 5.4.2

2

package.json
{
"name": "demrec",
"version": "5.4.1",
"version": "5.4.2",
"description": "Demo Recorder Renderer",

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

@@ -138,9 +138,5 @@ let fs = require('fs')

let t = [h, m, s].filter(x => x !== null).map((x, i, a) => {
return (i !== 0 && x < 10 && x !== '00') ? '0' + x : x
})
let t = [h, m, s].filter(x => x !== null).map((x, i) => (i !== 0 && x < 10 && x !== '00') ? '0' + x : x)
if (decimals) ms = (ms % 1).toString()
return (invert ? '-' : '') + t.join(':') + (decimals ? ms.substr(ms.indexOf('.'), decimals + 1) : '')
return (invert ? '-' : '') + t.join(':') + (decimals ? '.' + (ms % 1).toFixed(decimals).slice(2) : '')
},

@@ -147,0 +143,0 @@ addListeners (app, listeners, listener) {

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