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

kea

Package Overview
Dependencies
Maintainers
1
Versions
233
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kea - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

3

CHANGELOG.md
# Change Log
All notable changes to this project will be documented in this file.
## 2.3.1 - 2021-02-14
- Nicer error when accessing something in the store that doesn't exist
## 2.3.0 - 2021-02-10

@@ -5,0 +8,0 @@ - Adds `<BindLogic logic={keyedLogic} props={{ id: 12 }}>`, which passes a specific build of

@@ -893,3 +893,7 @@ 'use strict';

return [state].concat(path).reduce(function (v, a) {
return v[a];
if (a in v) {
return v[a];
}
throw new Error("[KEA] Can not find path \"" + path.join('.') + "\" in the redux store.");
});

@@ -896,0 +900,0 @@ }

@@ -889,3 +889,7 @@ import { createSelector } from 'reselect';

return [state].concat(path).reduce(function (v, a) {
return v[a];
if (a in v) {
return v[a];
}
throw new Error("[KEA] Can not find path \"" + path.join('.') + "\" in the redux store.");
});

@@ -892,0 +896,0 @@ }

2

package.json
{
"name": "kea",
"version": "2.3.0",
"version": "2.3.1",
"description": "Smart front-end architecture",

@@ -5,0 +5,0 @@ "author": "Marius Andra",

@@ -27,3 +27,8 @@ import { createSelector } from 'reselect'

function pathSelector(path: PathType, state: any) {
return [state].concat(path).reduce((v, a) => v[a])
return [state].concat(path).reduce((v, a) => {
if (a in v) {
return v[a]
}
throw new Error(`[KEA] Can not find path "${path.join('.')}" in the store.`)
})
}
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