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

ezzy-environment

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ezzy-environment - npm Package Compare versions

Comparing version 0.1.10 to 0.1.11

2

package.json
{
"name": "ezzy-environment",
"description": "A lightweight tool to provide common environment settings",
"version": "0.1.10",
"version": "0.1.11",
"author": {

@@ -6,0 +6,0 @@ "name": "Moises Romero",

@@ -1,2 +0,2 @@

# environment
# ezzy-environment
[![Build Status](https://travis-ci.org/ezzygemini/ezzy-environment.svg?branch=master)](https://travis-ci.org/ezzygemini/ezzy-environment)

@@ -3,0 +3,0 @@ [![Coverage Status](https://coveralls.io/repos/github/ezzygemini/ezzy-environment/badge.svg?branch=master)](https://coveralls.io/github/ezzygemini/ezzy-environment?branch=master)

@@ -15,3 +15,6 @@ let pkg;

console.log(`[PROCESS] ${JSON.stringify(process.env)}`);
const json = JSON.stringify(process.env);
if (json !== '{}') {
console.log(`[PROCESS] ${json}`);
}

@@ -86,3 +89,3 @@ let env = argument(['ENVIRONMENT', 'NODE_ENV'], 'production');

*/
set(key, value) {
set (key, value) {
this[key] = value;

@@ -97,3 +100,3 @@ }

*/
get(key, defaultValue) {
get (key, defaultValue) {
return this[key] || defaultValue;

@@ -100,0 +103,0 @@ }

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