Socket
Socket
Sign inDemoInstall

nconf

Package Overview
Dependencies
19
Maintainers
3
Versions
38
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.11.4 to 0.12.0

8

lib/nconf/provider.js

@@ -237,4 +237,4 @@ /*

async.whilst(function () {
return typeof response === 'undefined' && current < names.length;
async.whilst(function (cb) {
cb(null, typeof response === 'undefined' && current < names.length);
}, function (next) {

@@ -316,4 +316,4 @@ var store = self.stores[names[current]];

async.whilst(function() {
return !result && keyIndex < keys.length;
async.whilst(function(cb) {
cb(null, !result && keyIndex < keys.length);
}, function(next) {

@@ -320,0 +320,0 @@ var key = keys[keyIndex];

{
"name": "nconf",
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
"version": "0.11.4",
"version": "0.12.0",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",

@@ -22,3 +22,3 @@ "contributors": [

"dependencies": {
"async": "^1.4.0",
"async": "^3.0.0",
"ini": "^2.0.0",

@@ -30,5 +30,5 @@ "secure-keys": "^1.0.0",

"coveralls": "^3.1.0",
"eslint": "^4.9.0",
"istanbul": "^0.4.5",
"eslint": "^7.0.0",
"nconf-yaml": "^1.0.2",
"nyc": "^15.1.0",
"vows": "^0.8.3"

@@ -39,3 +39,3 @@ },

"test": "vows test/*-test.js test/**/*-test.js --spec",
"cover": "istanbul cover vows -- test/*-test.js test/**/*-test.js --spec",
"cover": "nyc --reporter=lcov npm test",
"coveralls": "cat coverage/lcov.info | coveralls",

@@ -42,0 +42,0 @@ "lint": "eslint ."

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with âšĄïž by Socket Inc