(size, vScale, actualBase)
| 172 | } |
| 173 | |
| 174 | function barSign(size, vScale, actualBase) { |
| 175 | if (size !== 0) { |
| 176 | return sign(size); |
| 177 | } |
| 178 | return (vScale.isHorizontal() ? 1 : -1) * (vScale.min >= actualBase ? 1 : -1); |
| 179 | } |
| 180 | |
| 181 | function borderProps(properties) { |
| 182 | let reverse, start, end, top, bottom; |
no test coverage detected