or
Motivation
The method allows to check each passed store for truthy values.
It can be compared with if (a || b || c || d)
.
Formulae
$result
store containstrue
if at least one of passed store contains “truthy” value.
Arguments
The method receives any amount of arguments.
...stores: Array<Store<T>>
— Each argument must be store with a value of any kind.
Returns
$result: Store<boolean>
— The store containsfalse
if each passed store instores
contains “falsey” value