plainfp - v0.1.0
    Preparing search index...

    Function or

    • Combine predicates with logical OR. Short-circuits on the first true.

      Type Parameters

      • T

      Parameters

      Returns Predicate<T>

      const isPriorityOrder = or<Order>(
      (o) => o.total > 500,
      (o) => o.customerTier === "gold",
      )