Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

af-echo

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

af-echo - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

8

index.js

@@ -724,3 +724,4 @@ /* eslint-disable class-methods-use-this */

}
const isSilly = (!onlyEnv && this.isLevelAllowed('silly')) || [...debugIDs, '*'].some((v) => process.env.DEBUG === v);
const debugEnvs = (process.env.DEBUG || '').split(/[,; ]+/);
const isSilly = (!onlyEnv && this.isLevelAllowed('silly')) || [...debugIDs, '*'].some((v) => debugEnvs.includes(v));
return (msg) => {

@@ -731,3 +732,6 @@ if (!isSilly) {

if (typeof msg === 'object') {
msg = Object.entries(msg).map(({ name, value }) => `${cC}${name}${cLB}=${cG}${typeof value === 'object' ? JSON.stringify(value) : value}`).join(`${cB}&${cG}`);
msg = Object.entries(msg).map(({
name,
value
}) => `${cC}${name}${cLB}=${cG}${typeof value === 'object' ? JSON.stringify(value) : value}`).join(`${cB}&${cG}`);
}

@@ -734,0 +738,0 @@ const pfx = `${cM}[${prefix}]${cG}`;

{
"name": "af-echo",
"version": "0.0.13",
"version": "0.0.14",
"description": "A highly specialized function library",

@@ -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