Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lpac

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lpac - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

10

index.js

@@ -61,3 +61,11 @@ const strftime = require('strftime')

} else {
return chalk.gray(item.toString())
if (item === undefined) {
return chalk.gray('undefined')
} else {
if (item === null) {
return chalk.gray('null')
} else {
return chalk.gray(item.toString())
}
}
}

@@ -64,0 +72,0 @@ })

2

package.json
{
"name": "lpac",
"version": "0.0.2",
"version": "0.0.3",
"description": "Logger progress and counter",

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

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