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

@venncity/nested-config

Package Overview
Dependencies
Maintainers
1
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@venncity/nested-config - npm Package Compare versions

Comparing version 3.1.19 to 3.1.20-jest-memory-fixes2.31

6

package.json
{
"name": "@venncity/nested-config",
"version": "3.1.19",
"version": "3.1.20-jest-memory-fixes2.31+73cc60c52",
"author": "Venn Engineering",

@@ -32,3 +32,3 @@ "main": "src/nestedConfig.js",

"dependencies": {
"@venncity/package-info": "^1.1.63",
"@venncity/package-info": "^1.1.64-jest-memory-fixes2.31+73cc60c52",
"config": "^3.1.0",

@@ -53,3 +53,3 @@ "lodash": "^4.17.11",

},
"gitHead": "a2b3814145dc03f83e6368cedf6cc8724e19b1fe"
"gitHead": "73cc60c5288b558d72f44ce4abb2fc4d7d435041"
}

@@ -9,3 +9,3 @@ const cls = require('cls-hooked');

}
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request'));
const requestNamespace = cls.getNamespace(getNamespaceName('request'));
return requestNamespace && requestNamespace.get(key);

@@ -15,3 +15,3 @@ }

function setReqV(key, value) {
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request'));
const requestNamespace = cls.getNamespace(getNamespaceName('request'));
if (requestNamespace) {

@@ -25,10 +25,17 @@ requestNamespace.set(key, value);

function isInRequestContext() {
const requestNamespace = cls.getNamespace(config.get('clsNamespace.request'));
const requestNamespace = cls.getNamespace(getNamespaceName('request'));
return requestNamespace && requestNamespace.active;
}
function getNamespaceName(nsName) {
// Required so that cls namespaces are not mixed between jest global init & workers.
const jestWorkerId = process.env.JEST_WORKER_ID || '';
return config.get(`clsNamespace.${nsName}`) + jestWorkerId;
}
module.exports = {
getReqV,
setReqV,
isInRequestContext
isInRequestContext,
getNamespaceName
};

@@ -100,2 +100,3 @@ process.env.ALLOW_CONFIG_MUTATIONS = true;

module.exports = (options) => {

@@ -102,0 +103,0 @@ if (_.isObject(options) && options.prebuiltConfigJson) {

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