* @param {number} value - Milliseconds since epoch (1 January 1970 00:00:00 UTC) * @return {number}
(value)
| 160 | * @return {number} |
| 161 | */ |
| 162 | getDecimalForValue(value) { |
| 163 | return (interpolate(this._table, value) - this._minPos) / this._tableRange; |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * @param {number} pixel |
nothing calls this directly
no test coverage detected