(val, opt)
| 177 | }, |
| 178 | |
| 179 | transformIn(val, opt) { |
| 180 | val = logScaleLogTick(val, this.base); |
| 181 | return (opt && opt.depth === SCALE_MAPPER_DEPTH_OUT_OF_BREAK) |
| 182 | ? val |
| 183 | : this.intervalStub.transformIn(val, opt); |
| 184 | }, |
| 185 | |
| 186 | transformOut(val, opt) { |
| 187 | const depth = opt ? opt.depth : null; |
no test coverage detected