New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aofl/object-utils

Package Overview
Dependencies
Maintainers
3
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aofl/object-utils - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json
{
"name": "@aofl/object-utils",
"version": "1.1.0",
"version": "1.1.1",
"description": "",

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

@@ -52,3 +52,3 @@ /**

let recursiveAssign = (pathParts, obj) => {
const recursiveAssign = (pathParts, obj) => {
if (pathParts.length === 0) {

@@ -58,4 +58,4 @@ return Object.assign({}, obj, rightSource);

let key = pathParts[0];
let subPath = pathParts.splice(1);
const key = pathParts[0];
const subPath = pathParts.splice(1);
return Object.assign({}, obj, {

@@ -62,0 +62,0 @@ [key]: recursiveAssign(subPath, obj[key])

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