($orient, a, b)
| 148833 | const ifLeftTopExpr = ($orient, a, b)=>ifExpr(`${$orient} === '${Left}' || ${$orient} === '${Top}'`, a, b); |
| 148834 | const ifTopExpr = ($orient, a, b)=>ifExpr(`${$orient} === '${Top}'`, a, b); |
| 148835 | const ifRightExpr = ($orient, a, b)=>ifExpr(`${$orient} === '${Right}'`, a, b); |
| 148836 | const ifEnc = (test, a, b)=>{ |
| 148837 | // ensure inputs are encoder objects (or null) |
| 148838 | a = a != null ? encoder(a) : a; |