(d, p)
| 112789 | return pad(d.getUTCMilliseconds(), p, 3); |
| 112790 | } |
| 112791 | function formatUTCMicroseconds(d, p) { |
| 112792 | return formatUTCMilliseconds(d, p) + "000"; |
| 112793 | } |
| 112794 | function formatUTCMonthNumber(d, p) { |
| 112795 | return pad(d.getUTCMonth() + 1, p, 2); |
| 112796 | } |
nothing calls this directly
no test coverage detected