Huge News!Announcing our $40M Series B led by Abstract Ventures.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 0.0.8 to 0.0.9

8

lib/ComponentStore.js

@@ -5,2 +5,3 @@ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";

import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
import _get from "@babel/runtime/helpers/get";
import _inherits from "@babel/runtime/helpers/inherits";

@@ -25,2 +26,9 @@ import Store from './Store';

_createClass(ComponentStore, [{
key: "getStateKeys",
value: function getStateKeys() {
return _get(_getPrototypeOf(ComponentStore.prototype), "getStateKeys", this).call(this).filter(function (key) {
return key !== 'props';
});
}
}, {
key: "appStore",

@@ -27,0 +35,0 @@ get: function get() {

4

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

@@ -19,3 +19,3 @@ "main": "lib/index.js",

"dependencies": {
"@goldfishjs/reactive": "^0.0.8",
"@goldfishjs/reactive": "^0.0.9",
"mini-types": "^0.0.4"

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

@@ -23,2 +23,6 @@ import Store from './Store';

public abstract props: P;
public getStateKeys() {
return super.getStateKeys().filter(key => key !== 'props');
}
}

@@ -11,2 +11,3 @@ import Store from './Store';

abstract props: P;
getStateKeys(): string[];
}
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