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

@goldfishjs/reactive-connect

Package Overview
Dependencies
Maintainers
2
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@goldfishjs/reactive-connect - npm Package Compare versions

Comparing version 1.1.7 to 1.1.8

1

lib/MiniDataSetter/SetTree.js

@@ -53,2 +53,3 @@ import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";

curObj[keyPathList[i]] = typeof keyPathList[i + 1] === 'number' ? [] : {};
curObj = curObj[keyPathList[i]];
}

@@ -55,0 +56,0 @@ }

6

package.json
{
"name": "@goldfishjs/reactive-connect",
"version": "1.1.7",
"version": "1.1.8",
"description": "goldfish-reactive-connect",

@@ -18,4 +18,4 @@ "main": "lib/index.js",

"dependencies": {
"@goldfishjs/reactive": "^1.1.7",
"@goldfishjs/utils": "^1.1.7",
"@goldfishjs/reactive": "^1.1.8",
"@goldfishjs/utils": "^1.1.8",
"mini-types": "^0.1.0"

@@ -22,0 +22,0 @@ },

@@ -44,3 +44,3 @@ import { generateKeyPathString } from '@goldfishjs/reactive';

private setValue(obj: any, keyPathList: keyPath.KeyPathList, value: any) {
const curObj = obj;
let curObj = obj;
for (let i = 0, il = keyPathList.length; i < il; i += 1) {

@@ -51,2 +51,3 @@ if (i === il - 1) {

curObj[keyPathList[i]] = typeof keyPathList[i + 1] === 'number' ? [] : {};
curObj = curObj[keyPathList[i]];
}

@@ -53,0 +54,0 @@ }

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