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

unpartial

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unpartial - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

4

dist-es2015/unpartialRecursively.js

@@ -21,3 +21,5 @@ "use strict";

function unpartialDuo(base, partial) {
if (partial === undefined || partial === null)
if (partial === undefined)
return base;
if (base === null || base === undefined)
return partial;

@@ -24,0 +26,0 @@ return merge({}, base, partial);

@@ -21,3 +21,5 @@ "use strict";

function unpartialDuo(base, partial) {
if (partial === undefined || partial === null)
if (partial === undefined)
return base;
if (base === null || base === undefined)
return partial;

@@ -24,0 +26,0 @@ return merge({}, base, partial);

{
"name": "unpartial",
"version": "0.4.0",
"version": "0.4.1",
"description": "Unpartial a partialed object",

@@ -24,3 +24,3 @@ "main": "dist-es5/index.js",

"postpublish": "git push",
"prepublish": "npm run build",
"prepare": "npm run build",
"preversion": "git pull && npm run verify",

@@ -27,0 +27,0 @@ "verify": "npm run lint && npm run coverage && npm run dependency-check",

Sorry, the diff of this file is not supported yet

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