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

kpdux

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kpdux - npm Package Compare versions

Comparing version 1.0.11 to 1.0.12

2

package.json
{
"name": "kpdux",
"version": "1.0.11",
"version": "1.0.12",
"author": "Kris Papercut <kearis666@gmail.com>",

@@ -5,0 +5,0 @@ "license": "ISC",

@@ -73,2 +73,8 @@ class StoreModule {

getGetterCreator(getter) {
return (state, ...attrs) => {
return getter(state, ...attrs);
};
}
reduce() {

@@ -210,5 +216,3 @@ return (state, action) => {

if(!this[i]) {
this[i] = (state, ...attrs) => {
return this._data.getters[i](state, ...attrs);
};
this[i] = this.getGetterCreator(this._data.getters[i]);
}

@@ -215,0 +219,0 @@ else {

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