-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
enhancementNew feature or requestNew feature or request
Description
"Reactions" are unobserved side effects in response to an observed computation.
The current way to do this:
auto(() => {
// Observed computation here
noto(() => {
// Unobserved side effects here
})
})The proposed way to do this:
auto(
() => {
// Observed computation here
},
result => {
// Unobserved side effects here
}
)The bonus (of course) being that you don't need to import noto.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request