(d, string, i)
| 82630 | } |
| 82631 | |
| 82632 | function parseUnixTimestampSeconds(d, string, i) { |
| 82633 | var n = numberRe.exec(string.slice(i)); |
| 82634 | return n ? (d.s = +n[0], i + n[0].length) : -1; |
| 82635 | } |
| 82636 | |
| 82637 | function formatDayOfMonth(d, p) { |
| 82638 | return pad(d.getDate(), p, 2); |
nothing calls this directly
no outgoing calls
no test coverage detected