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

@phenomnomnominal/debug

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@phenomnomnominal/debug - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

6

dist/debugger.js

@@ -106,3 +106,7 @@ "use strict";

var functions = {};
Object.getOwnPropertyNames(map)
// Get all property descriptors:
var descriptors = Object.getOwnPropertyDescriptors(map);
// Filter out getters and setters:
var functionNames = Object.keys(descriptors).filter(function (d) { return descriptors[d].value; });
functionNames
.filter(function (functionName) { return isFunction(map[functionName]) && !util_1.types.isProxy(map[functionName]); })

@@ -109,0 +113,0 @@ .forEach(function (functionName) {

2

package.json
{
"name": "@phenomnomnominal/debug",
"version": "0.2.3",
"version": "0.2.4",
"description": "Very lazy tool for adding debug logging",

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

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