(orient, a, b)
| 148819 | const ifX = (orient, a, b)=>isSignal(orient) ? ifXEnc(orient.signal, a, b) : isX(orient) ? a : b; // condition on axis y-direction |
| 148820 | const ifY = (orient, a, b)=>isSignal(orient) ? ifYEnc(orient.signal, a, b) : isX(orient) ? b : a; |
| 148821 | const ifTop = (orient, a, b)=>isSignal(orient) ? ifTopExpr(orient.signal, a, b) : orient === Top ? { |
| 148822 | value: a |
| 148823 | } : { |
| 148824 | value: b |
| 148825 | }; |
| 148826 | const ifRight = (orient, a, b)=>isSignal(orient) ? ifRightExpr(orient.signal, a, b) : orient === Right ? { |
| 148827 | value: a |
| 148828 | } : { |
no test coverage detected