(date)
| 2402 | var d3_time_prototype = Date.prototype; |
| 2403 | function d3_time_interval(local, step, number) { |
| 2404 | function round(date) { |
| 2405 | var d0 = local(date), d1 = offset(d0, 1); |
| 2406 | return date - d0 < d1 - date ? d0 : d1; |
| 2407 | } |
| 2408 | function ceil(date) { |
| 2409 | step(date = local(new d3_date(date - 1)), 1); |
| 2410 | return date; |
no test coverage detected