Socket
Socket
Sign inDemoInstall

cleaner-node

Package Overview
Dependencies
Maintainers
1
Versions
175
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cleaner-node - npm Package Compare versions

Comparing version 0.17.3 to 0.17.4

2

package.json
{
"name": "cleaner-node",
"version": "0.17.3",
"version": "0.17.4",
"description": "Helpful utilities and scripts to make Node projects more legible and easier for the next developer to take over.",

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

@@ -60,7 +60,7 @@ const path = require('path');

me.IS_NODE_ENV_SET = isValidString(me.NODE_ENV);
me.IS_DEV = (me.NODE_ENV || '').trim().toUpperCase().startsWith('DEV');
me.IS_PROD = (me.NODE_ENV || '').trim().toUpperCase().startsWith('PROD');
me.IS_DEV = isValidString(me.NODE_ENV) && me.NODE_ENV.trim().toUpperCase().startsWith('DEV');
me.IS_PROD = isValidString(me.NODE_ENV) && me.NODE_ENV.trim().toUpperCase().startsWith('PROD');
me.IS_NODE_DEBUG_SET = isValidString(me.NODE_DEBUG);
me.IS_DEBUG = (me.NODE_DEBUG || '').trim().toUpperCase() === 'TRUE';
me.IS_DEBUG = isValidString(me.NODE_DEBUG) && me.NODE_DEBUG.trim().toUpperCase() === 'TRUE';

@@ -67,0 +67,0 @@ me.IS_MODULE_PATH_SET = isValidString(getModulePath());

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