(unit, start, stop, step)
| 111387 | return ival ? ival.range(start, stop, step) : undefined; |
| 111388 | } |
| 111389 | function timeSequence(unit, start, stop, step) { |
| 111390 | return sequence(timeInterval(unit), start, stop, step); |
| 111391 | } |
| 111392 | function utcSequence(unit, start, stop, step) { |
| 111393 | return sequence(utcInterval(unit), start, stop, step); |
| 111394 | } |
nothing calls this directly
no test coverage detected