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

wappsto-redux

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wappsto-redux - npm Package Compare versions

Comparing version 3.1.2 to 3.2.0

2

actions/request.js

@@ -185,3 +185,3 @@ import querystring from 'query-string';

const parsedUrl = querystring.parseUrl(url);
const rQuery = { ...stateRequest.query, ...rUrl.query };
const rQuery = { ...stateRequest.query, ...rUrl.query, ...(stateRequest.options.query || {}) };
const query = options.query ? { ...options.query, ...parsedUrl.query } : parsedUrl.query;

@@ -188,0 +188,0 @@ if (stateRequest.status === 'pending'

{
"name": "wappsto-redux",
"version": "3.1.2",
"version": "3.2.0",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -141,2 +141,16 @@ import { createSelector } from "reselect";

if(entities){
let filters;
if(options instanceof Array){
filters = options.map(id => ({meta: {id}}));
} else {
filters = options.filter;
if(filters){
if(!(filters instanceof Array)){
filters = [filters];
}
if(!(filters[0] instanceof Object)){
filters = filters.map(id => ({meta: {id}}));
}
}
}
if(options.parent){

@@ -148,7 +162,3 @@ result = [];

if(found){
if(options.filter){
let filters = options.filter;
if(!(filters instanceof Array)){
filters = [filters];
}
if(filters){
for(let i = 0; i < filters.length; i++){

@@ -167,8 +177,4 @@ if(matchObject(found, filters[i])){

} else {
if(options.filter){
let filters = options.filter;
if(filters){
result = [];
if(!(filters instanceof Array)){
filters = [filters];
}
filters.forEach(filter => {

@@ -175,0 +181,0 @@ for(let key in entities){

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