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

dotenv-vars

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dotenv-vars - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

2

index.js

@@ -9,3 +9,3 @@ var fs = require('fs'),

envArray.forEach(function(envKeyVal) {
if(envKeyVal.length == 0 || envKeyVal.indexOf('=') == -1) return;
if(envKeyVal.length == 0 || envKeyVal.indexOf('=') == -1 || envKeyVal.indexOf('#') > -1) return;
var key = envKeyVal.split('=')[0].trim(),

@@ -12,0 +12,0 @@ val = envKeyVal.split('=')[1].trim();

{
"name": "dotenv-vars",
"version": "1.0.5",
"version": "1.0.6",
"description": "The slimmest module to load a .env file in your project path, setting each row in environment variables.",

@@ -5,0 +5,0 @@ "keywords": [

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