Socket
Socket
Sign inDemoInstall

dotenv

Package Overview
Dependencies
Maintainers
1
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dotenv - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

2

lib/main.js

@@ -22,3 +22,3 @@ "use strict";

var lines = content.split('\n');
var lines = lines.filter(function(n) { return n; }); // remove any empty lines
var lines = lines.filter(function(line) { return line.trim().length; }); // remove any empty lines

@@ -25,0 +25,0 @@ for (var i=0; i<lines.length; i++) {

{
"name": "dotenv",
"version": "0.0.4",
"version": "0.0.5",
"description": "Loads environment variables from .env",

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

@@ -13,3 +13,3 @@ var assert = require('assert'),

it('version should be set', function() {
result.version.should.eql("0.0.4");
result.version.should.eql("0.0.5");
});

@@ -16,0 +16,0 @@

Sorry, the diff of this file is not supported yet

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