(d, string, i)
| 82625 | } |
| 82626 | |
| 82627 | function parseUnixTimestamp(d, string, i) { |
| 82628 | var n = numberRe.exec(string.slice(i)); |
| 82629 | return n ? (d.Q = +n[0], i + n[0].length) : -1; |
| 82630 | } |
| 82631 | |
| 82632 | function parseUnixTimestampSeconds(d, string, i) { |
| 82633 | var n = numberRe.exec(string.slice(i)); |
nothing calls this directly
no outgoing calls
no test coverage detected