Motivation
The method allows to check passed value for null
.
Sometimes you need just to check for nullability, and go on.
$result
store contains true
if $value
store contains null
Arguments
$value: Store<T | null>
— The store contains any kind of value.
Returns
$result: Store<boolean>
— The store contains false
if passed $value
store contains any kind of value other from null
Example
Try it
Alternative