Socket
Socket
Sign inDemoInstall

bounded

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bounded - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

README.md

9

index.js

@@ -19,5 +19,3 @@ 'use strict';

event$.next(action);
var nextState = next(action);
store$.next(nextState);
return nextState;
return next(action);
};

@@ -28,2 +26,7 @@ };

var reduxStore = store(boundedMiddleware);
reduxStore.subscribe(function () {
store$.next(reduxStore.getState());
});
var command$ = new _Subject.Subject();

@@ -30,0 +33,0 @@

{
"name": "bounded",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

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

@@ -14,8 +14,11 @@ import { merge } from 'rxjs/observable/merge'

event$.next(action)
const nextState = next(action)
store$.next(nextState)
return nextState
return next(action)
}
const reduxStore = store(boundedMiddleware)
reduxStore.subscribe(function () {
store$.next(reduxStore.getState())
})
const command$ = new Subject()

@@ -22,0 +25,0 @@

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