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

@deboxsoft/module-core

Package Overview
Dependencies
Maintainers
1
Versions
280
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deboxsoft/module-core - npm Package Compare versions

Comparing version 1.7.0-1 to 1.7.0-2

14

index.cjs.js

@@ -39,8 +39,2 @@ 'use strict';

const CONFIG_KEY = Symbol("config-key");
class Logger {
}
const LOGGER_KEY = Symbol("logger-key");
class ServiceNotFoundError extends DeboxError {

@@ -109,2 +103,9 @@ constructor(identifier) {

const CONFIG_KEY = Symbol("config-key");
const config = Container.get(CONFIG_KEY);
class Logger {
}
const LOGGER_KEY = Symbol("logger-key");
function isObject(val) {

@@ -441,2 +442,3 @@ return val != null && typeof val === "object" && Array.isArray(val) === false;

exports.Logger = Logger;
exports.config = config;
exports.utils = index;

@@ -12,8 +12,2 @@ import * as changeCase from 'change-case';

const CONFIG_KEY = Symbol("config-key");
class Logger {
}
const LOGGER_KEY = Symbol("logger-key");
class ServiceNotFoundError extends DeboxError {

@@ -82,2 +76,9 @@ constructor(identifier) {

const CONFIG_KEY = Symbol("config-key");
const config = Container.get(CONFIG_KEY);
class Logger {
}
const LOGGER_KEY = Symbol("logger-key");
function isObject(val) {

@@ -409,2 +410,2 @@ return val != null && typeof val === "object" && Array.isArray(val) === false;

export { CONFIG_KEY, Container, DeboxError, LOGGER_KEY, Logger, index as utils };
export { CONFIG_KEY, Container, DeboxError, LOGGER_KEY, Logger, config, index as utils };
{
"name": "@deboxsoft/module-core",
"version": "1.7.0-1",
"version": "1.7.0-2",
"license": "SEE LICENSE IN LICENSE",

@@ -5,0 +5,0 @@ "maintainers": [

@@ -5,1 +5,2 @@ export declare type Config = {

export declare const CONFIG_KEY: unique symbol;
export declare const config: Config;
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