reactive-replica
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -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 @@ }); |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
56318
1655