(thresholds)
| 127236 | return locale.formatSpan(0, d, 30, specifier); |
| 127237 | } |
| 127238 | function thresholdValues(thresholds) { |
| 127239 | const values = [ |
| 127240 | -Infinity |
| 127241 | ].concat(thresholds); |
| 127242 | values.max = Infinity; |
| 127243 | return values; |
| 127244 | } |
| 127245 | function binValues(bins) { |
| 127246 | const values = bins.slice(0, -1); |
| 127247 | values.max = (0, _vegaUtil.peek)(bins); |