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

builder-util

Package Overview
Dependencies
Maintainers
1
Versions
258
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

builder-util - npm Package Compare versions

Comparing version 4.1.4 to 4.1.5

9

out/log.js

@@ -53,5 +53,2 @@ "use strict";

doLog(message, messageOrFields, level) {
if (message instanceof Error) {
message = message.stack;
}
if (message === undefined) {

@@ -64,2 +61,8 @@ this._doLog(messageOrFields, null, level);

_doLog(message, fields, level) {
// noinspection SuspiciousInstanceOfGuard
if (message instanceof Error) {
message = message.stack || message.toString();
} else {
message = message.toString();
}
const levelIndicator = "•";

@@ -66,0 +69,0 @@ const color = LEVEL_TO_COLOR[level];

{
"name": "builder-util",
"version": "4.1.4",
"version": "4.1.5",
"main": "out/util.js",

@@ -5,0 +5,0 @@ "author": "Vladimir Krivosheev",

Sorry, the diff of this file is not supported yet

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