(nice)
| 147442 | return v.signal || (0, _vegaUtil.isArray)(v) ? parseArray(v, scope) : scope.objectProperty(v); |
| 147443 | } // -- SCALE NICE ----- |
| 147444 | function parseScaleNice(nice) { |
| 147445 | return (0, _vegaUtil.isObject)(nice) ? { |
| 147446 | interval: parseLiteral(nice.interval), |
| 147447 | step: parseLiteral(nice.step) |
| 147448 | } : parseLiteral(nice); |
| 147449 | } // -- SCALE INTERPOLATION ----- |
| 147450 | function parseScaleInterpolate(interpolate, params) { |
| 147451 | params.interpolate = parseLiteral(interpolate.type || interpolate); |
| 147452 | if (interpolate.gamma != null) params.interpolateGamma = parseLiteral(interpolate.gamma); |
no test coverage detected