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

@ayogohealth/object-assign-deep

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ayogohealth/object-assign-deep - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

6

objectAssignDeep.js

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

for (const key in input) {
for (var key in input) {
if (!input.hasOwnProperty(key)) { continue; }

@@ -111,7 +111,7 @@

// Enumerate the objects and their keys.
for (let oindex = 0; oindex < objects.length; oindex++) {
for (var oindex = 0; oindex < objects.length; oindex++) {
var object = objects[oindex];
var keys = Object.keys(object);
for (let kindex = 0; kindex < keys.length; kindex++) {
for (var kindex = 0; kindex < keys.length; kindex++) {
var key = keys[kindex];

@@ -118,0 +118,0 @@ var value = object[key];

@@ -10,3 +10,3 @@ {

"name": "@ayogohealth/object-assign-deep",
"version": "0.4.0",
"version": "0.4.1",
"description": "Allows deep cloning of plain objects that contain primitives, nested plain objects, or nested plain arrays.",

@@ -13,0 +13,0 @@ "keywords": [

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