Socket
Socket
Sign inDemoInstall

inspect-property

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inspect-property - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

4

lib/inspect-property.js

@@ -13,3 +13,3 @@ 'use strict';

constructor: {
name: property && property.constructor.name,
name: property && property.constructor && property.constructor.name,
ref: property && property.constructor

@@ -33,3 +33,3 @@ }

forEachProperty(propertyInspection.properties, (value, key) => {
propertyInspection.properties[key] = !inspectProperties ? value : inspectProperty(value, null, { inspectFunction, inspectProperties: false });
propertyInspection.properties[key] = value === undefined || value === null || !inspectProperties ? value : inspectProperty(value, null, { inspectFunction, inspectProperties: false });
});

@@ -36,0 +36,0 @@ }

{
"name": "inspect-property",
"version": "0.0.3",
"version": "0.0.4",
"description": "Inspects a Property and returns useful informations about it (e.g. nested properties, function inspection, property descriptor, value, type, constructor)",

@@ -5,0 +5,0 @@ "main": "lib/inspect-property.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