Does knockoutjs have a way to conditionally fire manual subscriptions?
According to docs I can use the notify extender to control when get notified of a changes in an observable, for example to always fire subscriptions like this: yourObservable.extend({ notify: 'always' });
What I want to know is if that is there a way to condition when to fire nofication not only with strings as above but with a custom predicate or some observable value like this: yourObservable.extend({ notify: myPredicateOrObservable });