(skip, value, min, max)
| 35 | } |
| 36 | |
| 37 | function skipOrLimit(skip, value, min, max) { |
| 38 | return skip ? 0 : _limitValue(value, min, max); |
| 39 | } |
| 40 | |
| 41 | function parseBorderWidth(bar, maxW, maxH) { |
| 42 | const value = bar.options.borderWidth; |
no test coverage detected