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

@ulixee/commons

Package Overview
Dependencies
Maintainers
2
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ulixee/commons - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

6

logger.js

@@ -29,3 +29,7 @@ const { createLogger, transports, format } = require('winston');

const split = info.message || info.metadata.error ? ', ' : '';
out.push(split, JSON.stringify(logMetaObject, replacer, 2));
if (isString(logMetaObject)) {
out.push(split, logMetaObject);
} else {
out.push(split, JSON.stringify(logMetaObject, replacer, 2));
}
}

@@ -32,0 +36,0 @@

2

package.json
{
"name": "@ulixee/commons",
"version": "0.0.3",
"version": "0.0.4",
"description": "Common utilities including crypto, network, logging, and others",

@@ -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