Socket
Socket
Sign inDemoInstall

nconf

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nconf - npm Package Compare versions

Comparing version 0.6.6 to 0.6.7

2

lib/nconf/stores/memory.js

@@ -45,3 +45,3 @@ /*

key = path.shift();
if (target && typeof target !== 'string' && key in target) {
if (target && target.hasOwnProperty(key)) {
target = target[key];

@@ -48,0 +48,0 @@ continue;

{
"name": "nconf",
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
"version": "0.6.6",
"version": "0.6.7",
"author": "Nodejitsu Inc. <info@nodejitsu.com>",

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

@@ -61,3 +61,3 @@ /*

},
"within empty strings": function (store) {
"within non-empty strings": function (store) {
assert.doesNotThrow(function() {

@@ -109,2 +109,2 @@ assert.equal(store.get('falsy:string:value:not:exist'), undefined);

}
}).export(module);
}).export(module);
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