(d)
| 111258 | return utcDayOfYear(new Date(d)); |
| 111259 | } |
| 111260 | function utcweek(d) { |
| 111261 | return utcWeekNum(new Date(d)); |
| 111262 | } |
| 111263 | function utcDayOfYear(d) { |
| 111264 | const y = Date.UTC(d.getUTCFullYear(), 0, 1); |
| 111265 | return (0, _d3Time.utcDay).count(y - 1, d); |
nothing calls this directly
no test coverage detected