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 2.6.31 to 2.6.32

2

libs/config/index.d.ts

@@ -20,4 +20,4 @@ import { f as Config } from '../types-e8266c98.js';

declare const getConfigService: () => ConfigService;
declare const getConfig: <C = unknown>(key: string) => C;
declare const getConfig: <C = unknown>(key?: string) => C;
export { CONFIG_KEY, ConfigOptions, ConfigService, createConfig, createConfigService, getConfig, getConfigService, getHomePath };

@@ -61,4 +61,8 @@ import {

var getConfig = (key) => {
const config = getConfigService();
return getConfigService().get(key);
if (key) {
const config = getConfigService();
return getConfigService().get(key);
} else {
return Container.get(CONFIG_KEY);
}
};

@@ -65,0 +69,0 @@ export {

{
"name": "@deboxsoft/module-core",
"version": "2.6.31",
"version": "2.6.32",
"license": "SEE LICENSE IN LICENSE",

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

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