ngx-mq
    Preparing search index...

    Function or

    • Combines boolean signals with logical OR.

      Composition happens at the signal level, so the underlying media-query listeners stay shared and are still cleaned up automatically.

      Parameters

      • ...conditions: Signal<boolean>[]

        Boolean signals to combine. An empty call returns a signal that is always false.

      Returns Signal<boolean>

      A Signal<boolean> that is true when at least one condition is true.

      readonly prefersSimpleUi = or(down('md'), reducedMotion());
      

      and and not.