You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A library for managing data flows and changing state.
5
+
* A library for managing data flows graphs and changing state.
6
+
* Built on [reactive-property](https://github.com/curran/reactive-property).
7
+
* The foundation for [reactive-model](https://github.com/curran/reactive-model).
6
8
7
9
# Usage
8
10
@@ -55,7 +57,7 @@ ReactiveFunction({
55
57
});
56
58
```
57
59
58
-
This defines a "reactive function" that will be invoked when its inputs (`firstName` and `lastName`) are both defined and whenever either one changes. The function will be invoked on the next tick of the JavaScript event loop after it is defined and after any dependencies change.
60
+
This defines a "reactive function" that will be invoked when its inputs (`firstName` and `lastName`) are both defined and whenever either one changes ([`null` is considered a defined value](https://github.com/curran/reactive-function/issues/1)). The function will be invoked on the next tick of the JavaScript event loop after it is defined and after any dependencies change.
59
61
60
62
To force a synchronous evaluation of all reactive functions whose dependencies have updated, you can call
0 commit comments