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

@goldstack/utils-log

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@goldstack/utils-log - npm Package Compare versions

Comparing version 0.1.36 to 0.1.37

6

dist/utilsLog.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.fatal = exports.debug = void 0;
var isDebug = process.env.GOLDSTACK_DEBUG || process.env.DEBUG;
const isDebug = process.env.GOLDSTACK_DEBUG || process.env.DEBUG;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
exports.debug = function (msg) {
exports.debug = (msg) => {
if (isDebug) {

@@ -11,3 +11,3 @@ console.log(msg);

};
exports.fatal = function (msg) {
exports.fatal = (msg) => {
if (isDebug) {

@@ -14,0 +14,0 @@ throw new Error(msg);

{
"name": "@goldstack/utils-log",
"version": "0.1.36",
"version": "0.1.37",
"description": "Utilities for emitting logs.",

@@ -5,0 +5,0 @@ "license": "MIT",

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