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

omit-deep

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

omit-deep - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

6

index.js

@@ -19,6 +19,2 @@ 'use strict';

if (Array.isArray(value)) {
return omitDeep(value, props);
}
if (!isObject(value)) {

@@ -29,3 +25,3 @@ return value;

var o = {};
forOwn(value, function (val, key) {
forOwn(value, function(val, key) {
o[key] = omitDeep(val, props);

@@ -32,0 +28,0 @@ });

2

package.json
{
"name": "omit-deep",
"description": "Recursively omit the specified key or keys from an object.",
"version": "0.2.0",
"version": "0.2.1",
"homepage": "https://github.com/jonschlinkert/omit-deep",

@@ -6,0 +6,0 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",

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