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

reactive-replica

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reactive-replica - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

5

dist/index.js

@@ -155,3 +155,3 @@ 'use strict';

/** Creates Rx.Observable as if it is a listener to both create and change.
/** Creates Rx.Observable as if it is a listener to all the events: create, change and remove.
TODO: redesign the whole Place so that notifications are not based on Listeners, but directly on Observables.

@@ -168,2 +168,5 @@ */

result.next(after);
},
remove: function remove() {
result.next(undefined);
}

@@ -170,0 +173,0 @@ });

6

index.js

@@ -143,3 +143,3 @@

/** Creates Rx.Observable as if it is a listener to both create and change.
/** Creates Rx.Observable as if it is a listener to all the events: create, change and remove.
TODO: redesign the whole Place so that notifications are not based on Listeners, but directly on Observables.

@@ -157,2 +157,6 @@ */

result.next( after )
},
remove : function()
{
result.next( undefined )
}

@@ -159,0 +163,0 @@ } )

{
"name": "reactive-replica",
"version": "1.1.2",
"version": "1.1.3",
"description": "Helps structure logic around model changes, i.e. utilize reactive style.",

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

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