(d, p)
| 112722 | return pad(d.getMilliseconds(), p, 3); |
| 112723 | } |
| 112724 | function formatMicroseconds(d, p) { |
| 112725 | return formatMilliseconds(d, p) + "000"; |
| 112726 | } |
| 112727 | function formatMonthNumber(d, p) { |
| 112728 | return pad(d.getMonth() + 1, p, 2); |
| 112729 | } |
nothing calls this directly
no test coverage detected