Socket
Socket
Sign inDemoInstall

check-version-modules

Package Overview
Dependencies
1
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.4 to 1.3.5

9

lib/utils/padleft.js

@@ -10,3 +10,10 @@ /*

module.exports = function padleft (msg) {
return 2 > msg.length ? "0" + msg : msg;
if ("string" === typeof msg) {
return 2 > msg.length ? "0" + msg : msg;
}
else {
return padleft(String(msg));
}
};

12

package.json
{
"name": "check-version-modules",
"version": "1.3.4",
"version": "1.3.5",
"description": "Check modules's version for the package.",

@@ -49,9 +49,9 @@ "main": "lib/main.js",

"devDependencies": {
"@types/node": "16.9.4",
"@types/node": "16.11.6",
"coveralls": "3.1.1",
"eslint": "7.32.0",
"husky": "7.0.2",
"mocha": "9.1.1",
"eslint": "8.1.0",
"husky": "7.0.4",
"mocha": "9.1.3",
"nyc": "15.1.0",
"typescript": "4.4.3"
"typescript": "4.4.4"
},

@@ -58,0 +58,0 @@ "homepage": "https://github.com/Psychopoulet/check-version-modules#readme",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc