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

redux-falcor

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-falcor - npm Package Compare versions

Comparing version

to
3.0.0-beta2

8

dist/falcorRedux.js

@@ -401,2 +401,3 @@ (function webpackUniversalModuleDefinition(root, factory) {

var node = {};
var nodeCache = {};

@@ -407,3 +408,8 @@ Object.keys(data).forEach(function (key) {

get: function get() {
return expandChild(data[key]);
if (key in nodeCache) {
return nodeCache[key];
}
nodeCache[key] = expandChild(data[key]);
return nodeCache[key];
}

@@ -410,0 +416,0 @@ });

4

package.json
{
"name": "redux-falcor",
"version": "3.0.0-beta1",
"version": "3.0.0-beta2",
"description": "A helper library for integratig Redux & Falcor",

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

"deepmerge": "^0.2.10",
"falcor-expand-cache": "^0.0.1",
"falcor-expand-cache": "^0.0.2",
"falcor-json-graph": "^2.0.0",

@@ -40,0 +40,0 @@ "tiny-uuid": "^1.0.0"

Sorry, the diff of this file is not supported yet