(orient, a, b)
| 148824 | value: b |
| 148825 | }; |
| 148826 | const ifRight = (orient, a, b)=>isSignal(orient) ? ifRightExpr(orient.signal, a, b) : orient === Right ? { |
| 148827 | value: a |
| 148828 | } : { |
| 148829 | value: b |
| 148830 | }; |
| 148831 | const ifXEnc = ($orient, a, b)=>ifEnc(`${$orient} === '${Top}' || ${$orient} === '${Bottom}'`, a, b); |
| 148832 | const ifYEnc = ($orient, a, b)=>ifEnc(`${$orient} !== '${Top}' && ${$orient} !== '${Bottom}'`, a, b); |
| 148833 | const ifLeftTopExpr = ($orient, a, b)=>ifExpr(`${$orient} === '${Left}' || ${$orient} === '${Top}'`, a, b); |
no test coverage detected