(c)
| 106681 | const log = (sign)=>(x)=>Math.log(sign * x); |
| 106682 | const symlog = (c)=>(x)=>Math.sign(x) * Math.log1p(Math.abs(x / c)); |
| 106683 | const symexp = (c)=>(x)=>Math.sign(x) * Math.expm1(Math.abs(x)) * c; |
| 106684 | const pow = (exponent)=>(x)=>x < 0 ? -Math.pow(-x, exponent) : Math.pow(x, exponent); |
| 106685 | function pan(domain, delta, lift, ground) { |
| 106686 | const d0 = lift(domain[0]), d1 = lift(peek(domain)), dd = (d1 - d0) * delta; |
no outgoing calls
no test coverage detected