(d, string, i)
| 112691 | return n ? (d.L = +n[0], i + n[0].length) : -1; |
| 112692 | } |
| 112693 | function parseMicroseconds(d, string, i) { |
| 112694 | var n = numberRe.exec(string.slice(i, i + 6)); |
| 112695 | return n ? (d.L = Math.floor(n[0] / 1000), i + n[0].length) : -1; |
| 112696 | } |
| 112697 | function parseLiteralPercent(d, string, i) { |
| 112698 | var n = percentRe.exec(string.slice(i, i + 1)); |
| 112699 | return n ? i + n[0].length : -1; |
nothing calls this directly
no outgoing calls
no test coverage detected