(format)
| 110443 | } |
| 110444 | |
| 110445 | function formatRange(format) { |
| 110446 | return function (value, index, array) { |
| 110447 | var limit = array[index + 1] || array.max || +Infinity, |
| 110448 | lo = formatValue(value, format), |
| 110449 | hi = formatValue(limit, format); |
| 110450 | return lo && hi ? lo + '\u2013' + hi : hi ? '< ' + hi : '\u2265 ' + lo; |
| 110451 | }; |
| 110452 | } |
| 110453 | |
| 110454 | function formatDiscrete(format) { |
| 110455 | return function (value, index) { |
no test coverage detected