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

abslog

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abslog - npm Package Compare versions

Comparing version 2.4.3 to 2.4.4

2

package.json
{
"name": "abslog",
"version": "2.4.3",
"version": "2.4.4",
"description": "An abstract logger - Enables adding logging to modules without adding a dependency to a full log library. ",

@@ -5,0 +5,0 @@ "main": "lib/log.js",

declare namespace _exports {
export { LogFunction, AbstractLogger };
export { LogFunction, AbstractLoggerOptions, ValidLogger };
}
declare function _exports(logger: any): AbstractLogger;
declare function _exports(logger: AbstractLoggerOptions): ValidLogger;
export = _exports;
type LogFunction = (...args: any) => void;
type AbstractLogger = {
type AbstractLoggerOptions = ValidLogger | Console | undefined;
type ValidLogger = {
trace: LogFunction;

@@ -9,0 +10,0 @@ debug: LogFunction;

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