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

@pnp/common

Package Overview
Dependencies
Maintainers
12
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnp/common - npm Package Compare versions

Comparing version 2.1.0-beta3 to 2.1.0-beta4

9

collections.js

@@ -30,3 +30,10 @@ import { isFunc } from "./util";

maps[i].forEach(function (v, k) {
target.set(k, v);
if (Object.prototype.toString.call(v) === "[object Object]") {
// we only handle one level of deep object merging
var existing = target.get(k);
target.set(k, Object.assign(existing, v));
}
else {
target.set(k, v);
}
});

@@ -33,0 +40,0 @@ }

2

package.json
{
"name": "@pnp/common",
"version": "2.1.0-beta3",
"version": "2.1.0-beta4",
"description": "pnp - provides shared functionality across all pnp libraries",

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

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