(x)
| 6829 | }; |
| 6830 | function d3_scale_log(linear, base, positive, domain) { |
| 6831 | function log(x) { |
| 6832 | return (positive ? Math.log(x < 0 ? 0 : x) : -Math.log(x > 0 ? 0 : -x)) / Math.log(base); |
| 6833 | } |
| 6834 | function pow(x) { |
| 6835 | return positive ? Math.pow(base, x) : -Math.pow(base, -x); |
| 6836 | } |
no outgoing calls
no test coverage detected