@tempots/dom
Signal.flatMap property
Returns a new Signal that applies the given function to the value of the current Signal, and then flattens the resulting Signal.
Signature:
readonly flatMap: <O>(fn: (value: T) => Signal<O>, equals?: (a: O, b: O) => boolean) => Computed<O>;