(date)
| 9000 | function d3_time_interval(local, step, number) { |
| 9001 | |
| 9002 | function round(date) { |
| 9003 | var d0 = local(date), d1 = offset(d0, 1); |
| 9004 | return date - d0 < d1 - date ? d0 : d1; |
| 9005 | } |
| 9006 | |
| 9007 | function ceil(date) { |
| 9008 | step(date = local(new d3_time(date - 1)), 1); |