New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

confeta-env

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

confeta-env - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

11

lib/index.js

@@ -15,2 +15,3 @@ 'use strict';

var $separator = Symbol('separator');
var $options = Symbol('options');

@@ -23,2 +24,3 @@ var ConfetaEnv = function () {

this[$options] = options;
var prefix = options.prefix || '';

@@ -41,3 +43,10 @@ this[$separator] = options.separator || '.';

return this[$env][path];
var value = this[$env][path];
var arraySeparator = this[$options].arraySeparator;
if (arraySeparator) {
value = value.split(arraySeparator);
}
return value;
}

@@ -44,0 +53,0 @@ }]);

2

package.json
{
"name": "confeta-env",
"version": "1.2.0",
"version": "1.3.0",
"description": "Confeta env source",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

Sorry, the diff of this file is too big to display

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