Socket
Socket
Sign inDemoInstall

dotenvy

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dotenvy - npm Package Compare versions

Comparing version 0.1.1 to 0.2.0

index.d.ts

6

index.js

@@ -61,3 +61,4 @@ 'use strict';

write = function (key) {
process.env[key] = env[key];
var value = env[key];
process.env[key] = (value == null) ? '' : value;
};

@@ -68,3 +69,4 @@ }

if (!(key in process.env)) {
process.env[key] = env[key];
var value = env[key];
process.env[key] = (value == null) ? '' : value;
}

@@ -71,0 +73,0 @@ };

{
"name": "dotenvy",
"version": "0.1.1",
"version": "0.2.0",
"description": "dotenv for node.js, based on dotenv for ruby",

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

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