Socket
Socket
Sign inDemoInstall

flconf

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flconf - npm Package Compare versions

Comparing version 1.3.2 to 2.0.0

5

lib/env.js

@@ -26,4 +26,7 @@ // Copyright 2016 Yahoo Inc.

return val.replace(TOKEN, function (_, name) {
return process.env[name];
if (process.env.hasOwnProperty(name)) {
return process.env[name];
}
throw new ReferenceError('flconf: process.env.' + name + ' is undefined');
});
};

6

package.json
{
"name": "flconf",
"version": "1.3.2",
"version": "2.0.0",
"description": "Simple, pluggable, hierarchical configs",

@@ -30,5 +30,3 @@ "main": "index.js",

"eslint-config-flickr": "~1.3.1",
"mocha": "~3.2.0",
"mockery": "~1.4.1",
"sinon": "~1.17.3"
"mocha": "~3.2.0"
},

@@ -35,0 +33,0 @@ "dependencies": {

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