(d, string, i)
| 112675 | return n ? (d.m = 0, d.d = +n[0], i + n[0].length) : -1; |
| 112676 | } |
| 112677 | function parseHour24(d, string, i) { |
| 112678 | var n = numberRe.exec(string.slice(i, i + 2)); |
| 112679 | return n ? (d.H = +n[0], i + n[0].length) : -1; |
| 112680 | } |
| 112681 | function parseMinutes(d, string, i) { |
| 112682 | var n = numberRe.exec(string.slice(i, i + 2)); |
| 112683 | return n ? (d.M = +n[0], i + n[0].length) : -1; |
nothing calls this directly
no outgoing calls
no test coverage detected