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

@incanta/config

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@incanta/config - npm Package Compare versions

Comparing version 0.1.21 to 0.1.22

1

lib/config.d.ts

@@ -16,2 +16,3 @@ export interface IConfigOptions {

tryGet<T>(key: string): T | null;
getJson(): any;
set<T>(key: string, value: T): void;

@@ -18,0 +19,0 @@ setWithParts<T>(keyParts: string[], value: T): void;

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

}
getJson() {
return this.values;
}
set(key, value) {

@@ -147,0 +150,0 @@ const parts = key.split(".");

2

package.json
{
"name": "@incanta/config",
"version": "0.1.21",
"version": "0.1.22",
"main": "lib/index.js",

@@ -5,0 +5,0 @@ "exports": {

@@ -185,2 +185,6 @@ import merge from "lodash.merge";

public getJson(): any {
return this.values;
}
public set<T>(key: string, value: T): void {

@@ -187,0 +191,0 @@ const parts = key.split(".");

Sorry, the diff of this file is not supported yet

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